-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
41 lines (31 loc) · 1.05 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
from setuptools import setup
version_contents = {}
with open("ledgerx/version.py", "r", encoding="utf-8") as f:
exec(f.read(), version_contents)
with open("README.md", "r") as f:
long_description = f.read()
dependencies = [
"requests>=2.20.0",
"Deprecated",
]
test_dependencies = ["pytest", "black", "requests-mock"]
setup(
name="ledgerx",
version=version_contents["VERSION"],
description="python client for ledgerx",
long_description=long_description,
long_description_content_type="text/markdown",
author="Weston Platter",
author_email="[email protected]",
url="https://github.com/westonplatter/lederx-python/",
license="BSD-3-Clause",
python_requires=">=3.6",
packages=["ledgerx"],
# package_data={'fast_arrow': ['ssl_certs/certs.pem']},
install_requires=dependencies,
tests_require=test_dependencies,
project_urls={
"Issue Tracker": "https://github.com/westonplatter/ledgerx-python/issues",
"Source Code": "https://github.com/westonplatter/ledgerx-python",
},
)