-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
25 lines (24 loc) · 927 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
from setuptools import setup
setup(
name='csdownloader',
version='0.0.1',
description='A tool for extracting data via API provided by Clearspending.ru',
url='https://github.com/ansakoy/cs_downloader',
author='Anna Sakoyan',
author_email='[email protected]',
install_requires=['openpyxl', 'python-telegram-bot', 'requests'],
packages=['downloader'],
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Natural Language :: Russian',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Topic :: Software Development :: User Interfaces',
'Topic :: Database :: Front-Ends',
'License :: OSI Approved :: MIT License'
]
)