-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.py
40 lines (38 loc) · 1.08 KB
/
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
34
35
36
37
38
39
40
#!/usr/bin/env python
from setuptools import setup
setup(
name='mobile-balance',
version='0.10.2',
description='A set of utilities to retrive a balance from some Russian mobile operators.',
author='Alexander Artemenko',
author_email='[email protected]',
url='https://github.com/svetlyak40wt/mobile-balance',
packages=[
'mobile_balance',
],
entry_points={
'console_scripts': [
'mobile-balance = mobile_balance.main:main',
]
},
install_requires=[
'requests',
'docopt<0.7.0',
'pyopenssl',
'ndg-httpsclient',
'pyasn1'
],
license='BSD',
zip_safe=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
],
keywords='mobile, balance, utility'
)