FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-ndn/setup.py at master · arezk/python-ndn · GitHub
arezk
/
python-ndn
Public
forked from
named-data/python-ndn
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-ndn
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
50 lines (39 loc) · 1.54 KB
Breadcrumbs
python-ndn
/
setup.py
Copy path
File metadata and controls
50 lines (39 loc) · 1.54 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
#!/usr/bin/env python3
import
io
import
re
from
setuptools
import
setup
,
find_packages
# Always prefer setuptools over distutils
with
io
.
open
(
"src/ndn/__init__.py"
,
"rt"
,
encoding
=
"utf8"
)
as
f
:
version
=
re
.
search
(
r'__version__ = "(.*?)"'
,
f
.
read
()).
group
(
1
)
requirements
=
[
'pycryptodomex >= 3.8.2'
,
'pygtrie >= 2.3.2'
,
'dataclasses >= 0.6'
]
setup
(
name
=
'python-ndn'
,
version
=
version
,
description
=
'An NDN client library with AsyncIO support in Python 3'
,
url
=
'https://github.com/zjkmxy/python-ndn'
,
author
=
'Xinyu Ma'
,
author_email
=
'ma.xinyu.26a@kyoto-u.jp'
,
download_url
=
'https://pypi.python.org/pypi/python-ndn'
,
project_urls
=
{
"Bug Tracker"
:
"https://github.com/zjkmxy/python-ndn/issues"
,
"Documentation"
:
"https://python-ndn.readthedocs.io/"
,
"Source Code"
:
"https://github.com/zjkmxy/python-ndn"
,
},
license
=
'Apache License 2.0'
,
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers
=
[
'Development Status :: 4 - Beta'
,
'Intended Audience :: Developers'
,
'Topic :: Software Development :: Libraries'
,
'Topic :: Internet'
,
'Topic :: System :: Networking'
,
'License :: OSI Approved :: Apache Software License'
,
'Programming Language :: Python :: 3.6'
,
'Programming Language :: Python :: 3.7'
,
'Programming Language :: Python :: 3.8'
,
],
keywords
=
'NDN'
,
packages
=
find_packages
(
'src'
),
package_dir
=
{
''
:
'src'
},
install_requires
=
requirements
,
python_requires
=
">=3.6"
)
Back
|
FazBrowse Home
|
New Git URL