-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (25 loc) · 857 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md', 'r') as fp:
long_description = fp.read()
setup(
name='tenet',
description='stats.tenet.ua account manager',
long_description=long_description,
long_description_content_type="text/markdown",
version='0.7',
author='Dmytro Poltavchenko',
author_email='[email protected]',
url='https://github.com/zen-tools/py-tenet',
license='GPL',
packages=find_packages(),
include_package_data=True,
install_requires=['requests', 'lxml'],
classifiers=[
"Topic :: Internet",
'Topic :: Software Development :: Libraries',
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
)