-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 763 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 763 Bytes
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
"""setup.py file."""
from setuptools import setup, find_packages
with open("requirements.txt", "r") as fs:
reqs = [r for r in fs.read().splitlines() if (len(r) > 0 and not r.startswith("#"))]
__author__ = '???'
__license__ = '???'
setup(name='bgp_bot',
description="Dumb BGP bot",
author=__author__,
url='https://github.com/GGabriele/bgp_bot',
include_package_data=True,
install_requires=reqs,
packages=find_packages(exclude=("test*", )),
entry_points={
'console_scripts': {
"bgp-bot = bgp_bot.main:run",
}
},
license=__license__,
test_suite='tests',
platforms='any',
classifiers=[
'Programming Language :: Python :: 2.7'
]
)