-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
42 lines (40 loc) · 1.32 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="dotaservice",
version="0.3.9",
author="Tim Zaman",
author_email="[email protected]",
description="DotaService is a service to play Dota 2 through gRPC",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/TimZaman/DotaService",
packages=setuptools.find_packages(),
package_data={'dotaservice': ['lua/*.lua']},
python_requires='>=3.7',
classifiers=[
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: Freeware",
"License :: Other/Proprietary License",
"Operating System :: MacOS",
"Operating System :: Unix",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
],
install_requires=[
'grpclib',
'protobuf',
],
extras_require={
'dev': [
'grpcio-tools',
],
},
)