-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
41 lines (37 loc) · 1.32 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
# The README.md will be used as the content for the PyPi package details page on the Python Package Index.
with open("README.md", "r") as readme:
long_description = readme.read()
setup(
name='polyswarm-transaction',
version='0.4.1',
description='Library for building & signing transactions for the PolySwarm sidechain',
long_description=long_description,
long_description_content_type="text/markdown",
author='PolySwarm Developers',
author_email='[email protected]',
url='https://github.com/polyswarm/polyswarm-transaction',
license='MIT',
python_requires='>=3.6,<4',
install_requires=[
"dataclasses==0.7; python_version == '3.6'",
"hexbytes~=0.2.0",
"jsonschema~=3.2.0",
"polyswarm-artifact~=1.4.2",
"web3~=5.6.0",
"click~=7.1.2",
],
include_package_data=True,
packages=find_packages('src'),
package_dir={'': 'src'},
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: PyPy",
]
)