-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
executable file
·41 lines (40 loc) · 1.29 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python3
from os.path import dirname, join
import setuptools
import fetch_cord.__init__ as __init__
setuptools.setup(
name="FetchCord",
version=__init__.VERSION,
description="grabs information about your Distro and displays it as Discord Rich Presence.",
long_description=open(join(dirname(__file__), "README.md")).read(),
long_description_content_type="text/markdown",
url="https://github.com/MrPotatoBobx/FetchCord",
author="MrPotatoBobx",
author_email="[email protected]",
license="MIT",
package_data={
"fetch_cord": [
"config_schema.json",
"resources/default.conf",
"resources/fetch_cord.conf",
"resources/fetchcord_ids.json",
"computer/*.py",
"computer/*/*.py",
]
},
packages=["fetch_cord"],
include_package_data=True,
install_requires=["pypresence", "psutil", "importlib-resources"],
keywords=["distro", "info", "discord", "fetch"],
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
entry_points={
"console_scripts": [
"fetchcord=fetch_cord.__main__:main",
]
},
)