-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
47 lines (45 loc) · 1.15 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
from setuptools import setup, find_packages
from os.path import join
NAME = "blocklister"
DESCRIPTION = "Create Mikrotik Firewall address-lists and offer them via http"
AUTHOR = "Frank Lazzarini"
AUTHOR_EMAIL = "[email protected]"
VERSION = open(join(NAME, 'version.txt')).read().strip()
LONG_DESCRIPTION = open("README.rst").read()
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license="Private",
include_package_data=True,
install_requires=[
"Flask >=1.0.0, <2.0",
"Flask-Limiter==0.9.1",
"requests >=2.9,<3.0",
],
entry_points={
'console_scripts': [
'blocklister-updater=blocklister.updater:run'
]
},
extras_require={
"dev": [
"sphinx",
"sphinx-rtd-theme",
"gunicorn",
],
"test": [
"pylint",
"pyroma",
"pytest",
"pytest-cov",
"radon",
]
},
dependency_links=[],
packages=find_packages(exclude=["tests.*", "tests"]),
zip_safe=False,
)