forked from mdiller/dotabase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (26 loc) · 875 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
#!/usr/bin/env python3.6
from setuptools import setup, find_packages
from codecs import open
from os import path
# Get the long description from the README file
with open(path.join(path.abspath(path.dirname(__file__)), 'README.md')) as f:
long_description = f.read()
with open(path.join(path.dirname(__file__), 'VERSION')) as f:
version = f.read().strip()
setup(
name='dotabase',
version=version,
description='Dota 2 game data extracted as an sqlite database, with an sqlalchemy wrapper',
long_description=long_description,
long_description_content_type='text/markdown',
author='Malcolm Diller',
author_email='[email protected]',
url='https://github.com/mdiller/dotabase',
keywords='dota dota2 data sqlite',
include_package_data=True,
packages=['dotabase'],
install_requires=['sqlalchemy'],
classifiers=[
'License :: OSI Approved :: MIT License'
],
)