forked from bgpfu/bgpfu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·42 lines (40 loc) · 1.38 KB
/
setup.py
File metadata and controls
executable file
·42 lines (40 loc) · 1.38 KB
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
from setuptools import setup, find_packages
from codecs import open
version = open('facsimile/VERSION').read().strip()
requirements = open('facsimile/requirements.txt').read().split("\n")
test_requirements = open('facsimile/requirements-test.txt').read().split("\n")
with open('README.rst', encoding='utf-8') as f:
long_description = f.read()
setup(
name='bgpfu',
version=version,
author='',
author_email='',
description='A toolbelt to assist with the automatic creation of safe prefix-filters',
long_description=long_description,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet',
],
packages=find_packages(
include=[
'bgpfu',
'bgpfu.*'
]
),
url='https://github.com/bgpfu/bgpfu',
download_url='https://github.com/bgpfu/bgpfu/%s' % version,
include_package_data=True,
install_requires=requirements,
tests_require=test_requirements,
entry_points={
'console_scripts': ['bgpfu=bgpfu.cli:cli']
},
zip_safe=True,
)