-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
56 lines (51 loc) · 2.08 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
# @Author: Justin C Presley
# @Author-Email: [email protected]
# @Project: NDN State Vector Sync Protocol
# @Source-Code: https://github.com/justincpresley/ndn-python-svs
# @Pip-Library: https://pypi.org/project/ndn-svs
# @Documentation: https://ndn-python-svs.readthedocs.io
#!/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-svs',
version=version,
description='The NDN State Vector Sync (SVS) Protocol in Python 3',
long_description=long_description,
long_description_content_type='text/x-rst',
url='https://github.com/justincpresley/ndn-python-svs',
author='Justin C Presley',
author_email='[email protected]',
maintainer='Justin C Presley',
maintainer_email='[email protected]',
download_url='https://pypi.python.org/pypi/ndn-svs',
project_urls={
"Bug Tracker": "https://github.com/justincpresley/ndn-python-svs/issues",
"Source Code": "https://github.com/justincpresley/ndn-python-svs",
},
license='LGPL-2.1 License',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Topic :: Internet',
'Topic :: System :: Networking',
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
],
keywords='NDN SVS',
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=_parse_requirements('docs/requirements.txt'),
python_requires=">=3.9",
zip_safe=False)