forked from irrdnet/irrd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·52 lines (50 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
#!/usr/bin/env python
import setuptools
from irrd import __version__
with open('README.rst', 'r') as fh:
long_description = fh.read()
setuptools.setup(
name='irrd',
version=__version__,
author='DashCare for NTT Communications',
author_email='[email protected]',
description='Internet Routing Registry daemon (IRRd)',
long_description=long_description,
long_description_content_type='text/x-rst',
url='https://github.com/irrdnet/irrd4',
packages=setuptools.find_packages(
exclude=['*.tests', '*.tests.*', 'tests.*', 'tests', 'irrd.integration_tests']
) + ['twisted.plugins'],
python_requires='>=3.6',
package_data={'': ['*.txt', '*.yaml', '*.mako']},
install_requires=[
# This list must be kept in sync with requirements.txt version-wise,
# but should not include packages used for testing, generating docs
# or packages.
'python-gnupg==0.4.3',
'passlib==1.7.1',
'IPy==0.83',
'dataclasses==0.6',
'orderedset==2.0.1',
'dotted==0.1.8',
'beautifultable==0.6.0',
'PyYAML==3.13',
'psycopg2-binary==2.7.6.1',
'SQLAlchemy==1.2.16',
'alembic==1.0.6',
'ujson==1.35',
'twisted==18.9.0',
],
entry_points={
'console_scripts': [
'irrd_submit_email = irrd.scripts.submit_email:main',
'irrd_database_upgrade = irrd.scripts.database_upgrade:main',
],
},
classifiers=(
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Operating System :: OS Independent',
),
)