-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (30 loc) · 913 Bytes
/
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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "AtoD",
version = "0.1.2",
author = "Abroskin Gleb",
author_email = "[email protected]",
description = ("Easy access to DotA2 internal data."),
license = "MIT",
keywords = "games data DotA2 ml",
url = "https://github.com/gasabr/AtoD",
packages=['atod', 'atod.utils', 'atod.tests', 'atod.db_models',
'atod.models', 'atod.db'],
long_description=read('README.rst'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Games/Entertainment",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.5"
],
install_requires=[
"dota2api",
"pandas",
"SQLAlchemy",
"yamjam",
],
include_package_data=True,
)