-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (37 loc) · 1.03 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
from setuptools import setup, find_packages
install_requires = [
'boto3',
'celery',
'Django',
'djangorestframework',
'dnspython',
'hashids',
'redis',
'requests',
'zipa',
]
tests_require = ['pytest', 'pytest-runner>=6.0,<7', 'pytest-ruff']
setup(
name='zinc-dns',
version='1.1.0',
description="Route 53 zone manager",
author="Presslabs",
author_email="[email protected]",
url="https://github.com/Presslabs/zinc",
install_requires=install_requires,
tests_require=tests_require,
packages=find_packages(include=['zinc', 'zinc.*']),
extras_require={
'test': tests_require
},
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License', # example license
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.11',
]
)