-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
46 lines (35 loc) · 1.18 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
41
42
43
44
45
46
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.md', 'r') as fi:
long_description = fi.read()
setup(
name='mosmetro',
version='0.1.1+3',
author='Dmitry Karikh',
author_email='[email protected]',
description='Скрипт для автоматической авторизации в сетях московского (и не только) общественного транспорта',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/mosmetro-android/mosmetro-python',
license='GNU GPLv3',
install_requires=[
'requests',
'furl',
'user_agent',
'beautifulsoup4'
],
packages=find_packages(),
include_package_data=True,
entry_points='''
[console_scripts]
mosmetro=mosmetro.__main__:main
''',
classifiers=[
'Environment :: Console',
'Programming Language :: Python :: 3.6',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Internet',
'Topic :: Utilities'
]
)