forked from nouman0103/winerp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (45 loc) · 1.35 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
42
43
44
45
46
47
48
from setuptools import setup
extras = {
'docs': [
'sphinx==4.4.0',
'sphinxcontrib_trio==1.1.2',
'sphinxcontrib-websupport',
'typing-extensions',
],
}
setup(
name="winerp",
version="1.5.0",
description="Websocket based IPC for discord.py bots",
long_description="...",
long_description_content_type="text/markdown",
url="https://github.com/BlackThunder01001/winerp",
project_urls={
"Bug Tracker": "https://github.com/BlackThunder01001/winerp/issues",
"Documentation": "https://winerp.readthedocs.io/en/latest/",
},
author="BlackThunder",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Operating System :: OS Independent",
"Typing :: Typed",
],
packages=["winerp"],
package_data={
'winerp.lib': ['*'],
},
include_package_data=True,
entry_points={
'console_scripts': [
'winerp=winerp.__main__:run',
]
},
install_requires=["websockets", "websocket-server", "orjson"],
extra_requires=extras,
python_requires=">=3.6",
)