forked from sambarnes/factom-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 932 Bytes
/
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
from setuptools import (
setup,
find_packages,
)
deps = {"factom-py": ["factom-keys", "plyvel",], "hydra": ["bottle", "click", "plyvel", "requests",]}
setup(
name="factom-py",
version="0.0.9",
description="A python library for working with the primitives of the Factom blockchain",
author="Justin Hanneman (originally Sam Barnes)",
author_email="[email protected]",
url="https://github.com/FactomProject/factom-py",
keywords=["factom", "core", "blockchain"],
license="MIT",
py_modules=["factom_py"],
install_requires=deps["factom-py"],
zip_safe=False,
packages=find_packages(exclude=["tests", "tests.*", "hydra", "p2p"]),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
],
)