-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (31 loc) · 882 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
from setuptools import setup
setup(
name="my-kyivstar",
version="0.0.3",
description="Check balance using cli from account.kyivstar.ua",
author="Victor Gavro",
author_email="[email protected]",
url="https://github.com/vgavro/my-kyivstar",
license="MIT License",
classifiers=[
# https://pypi.org/pypi?%3Aaction=list_classifiers
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
],
py_modules=["my_kyivstar"],
install_requires=[
'requests',
'requests-toolbelt',
'lxml',
'cssselect',
'pyyaml',
],
entry_points={
'console_scripts': [
'my-kyivstar=my_kyivstar:main',
],
},
)