This repository has been archived by the owner on Nov 7, 2024. It is now read-only.
forked from evernym/pypeerdid
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (38 loc) · 1.4 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
import pathlib
from setuptools import setup
import sys
v = sys.version_info
if sys.version_info < (3, 5):
v = sys.version_info
print("FAIL: Requires Python 3.5 or later, but setup.py was run using %s.%s.%s" % (v.major, v.minor, v.micro))
print("NOTE: Installation failed. Run setup.py using python3")
sys.exit(1)
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
# This call to setup() does all the work
setup(
name="peerdid",
version="0.1.4",
description="Python Peer DID Library",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/evernym/pypeerdid",
author="Daniel Hardman",
author_email="[email protected]",
license="Apache 2.0",
keywords="did decentralized identity",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Development Status :: 4 - Beta"
],
packages=["peerdid"],
#include_package_data=True, -- write a MANIFEST.in with glob patterns if uncommented
install_requires=[],
download_url='https://github.com/evernym/pypeerdid/archive/v0.1.4.tar.gz',
)