This repository has been archived by the owner on Apr 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
71 lines (65 loc) · 1.66 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as f:
README = f.read()
with open(os.path.join(here, 'CHANGES.txt')) as f:
CHANGES = f.read()
requires = [
'pyramid',
'pypugjs',
'alembic',
'psycopg2-binary',
'SQLAlchemy',
'pyramid_tm',
'transaction',
'pyramid_retry',
'zope.sqlalchemy',
'celery',
'geoip2',
'idna',
'pyyaml'
]
dev_require = [
'plaster_pastedeploy',
'waitress',
'pyramid_debugtoolbar',
'pycodestyle',
'sphinx',
'sphinc-rtd-theme',
'cornice_swagger',
'sphinxcontrib-openapi',
'black',
]
tests_require = [
'WebTest >= 1.3.1', # py3 compat
'pytest >= 3.7.4',
'pytest-cov',
]
setup(
name='netwark',
version='1.0.0',
description='netwark',
long_description=README + '\n\n' + CHANGES,
classifiers=[
'Programming Language :: Python',
'Framework :: Pyramid',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
],
author='Michael Vieira',
author_email='contact+dev[âT]mvieira[d¤T]fr',
url='https://github.com/themimitoof/netwark',
keywords='network tools ping mtr traceroute geoip lookup as pyramid',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
extras_require={'testing': tests_require, 'dev': dev_require},
install_requires=requires,
entry_points={
'paste.app_factory': ['main = netwark:main'],
'console_scripts': [
'initialize_netwark_db=netwark.bin.initialize_db:main'
],
},
)