-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
66 lines (61 loc) · 2.53 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# -------------------------------------------------------------
# NDN Hydra Pip Setup
# -------------------------------------------------------------
# @Project: NDN Hydra
# @Date: 2021-01-25
# @Authors: Please check AUTHORS.rst
# @Source-Code: https://github.com/justincpresley/ndn-hydra
# @Documentation: https://ndn-hydra.readthedocs.io
# @Pip-Library: https://pypi.org/project/ndn-hydra
# -------------------------------------------------------------
#!/usr/bin/env python3
import io
import re
from setuptools import setup, find_packages
from typing import List
with io.open("docs/version.py", "rt", encoding="utf8") as f:
version = re.search(r'__version__ = "(.*?)"', f.read()).group(1)
with io.open("README.rst", "rt", encoding="utf8") as f:
long_description = f.read()
def _parse_requirements(filename: str) -> List[str]:
with open(filename, 'r') as f:
return [s for s in [ line.split('#', 1)[0].strip(' \t\n') for line in f ] if s != '']
setup(
name='ndn-hydra',
version=version,
description='ndn-hydra: An NDN distributed repository with resiliency coded in python.',
long_description=long_description,
long_description_content_type='text/x-rst',
url='https://github.com/justincpresley/ndn-hydra',
author='Justin C Presley',
author_email='[email protected]',
maintainer='Justin C Presley',
maintainer_email='[email protected]',
download_url='https://pypi.python.org/pypi/ndn-hydra',
project_urls={
"Bug Tracker": "https://github.com/justincpresley/ndn-hydra/issues",
"Source Code": "https://github.com/justincpresley/ndn-hydra",
},
license='Apache License 2.0',
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Software Development :: Libraries',
'Topic :: Database',
'Topic :: Internet',
'Topic :: System :: Networking',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
],
keywords='NDN HYDRA',
packages=find_packages(exclude=['tests','examples','docs','notes']),
install_requires=_parse_requirements('docs/requirements.txt'),
python_requires=">=3.8",
entry_points={
'console_scripts': [
'ndn-hydra-repo = ndn_hydra.repo.main.main:main',
'ndn-hydra-client = ndn_hydra.client.main:main'
]
},
zip_safe=False)