-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 783 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 783 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
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
setup(
version = '0.6.0',
name = 'rov',
author = 'Romain Fontugne',
author_email = 'romain.fontugne@gmail.com',
url = 'https://github.com/InternetHealthReport/route-origin-validator/',
description="Offline Internet route origin validation using RPKI, IRR, and RIRs delegated databases",
long_description=readme,
long_description_content_type="text/markdown",
keywords = ['RPKI', 'IRR', 'delegated', 'Internet', 'routing', 'route origin validation'],
packages = find_packages(),
install_requires=[
'appdirs',
'py-radix',
'portion'
],
entry_points={'console_scripts':
['rov = rov.__main__:main']},
)