-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·38 lines (34 loc) · 1017 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
33
34
35
36
37
38
#!/usr/bin/env python
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(name='p2pproxy-record-manager',
version='0.1.3',
description='Application to manage records for Local TS Proxy.',
long_description=long_description,
author='Said Babayev',
author_email='[email protected]',
license='GPLv3',
url='https://github.com/ph0enix49/p2pproxy-record-manager',
packages=['record_manager'],
include_package_data=True,
zip_safe=False,
install_requires=[
'beautifulsoup4>=4.4.0',
'Flask>=0.10.0',
'Flask-WTF',
'Jinja2',
'Werkzeug',
'WTForms>=2.0',
'requests>=2.9.0',
'Flask-Babel>=0.9',
],
entry_points={
'console_scripts': [
'record_manager=record_manager.record_manager:main',
],
},
)