-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (43 loc) · 1.29 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
43
44
45
46
from os import path
from setuptools import (
find_packages,
setup,
)
# managing version
with open("VERSION", 'r') as f:
VERSION = f.read()
# managing readme
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), 'r') as f:
long_description = f.read()
setup(
name='erasure',
version=VERSION,
py_modules=['erasure'],
description="""A python library to interact with the erasure protocol.""",
long_description=long_description,
long_description_content_type='text/markdown',
author='Ankit Chiplunkar',
author_email='[email protected]',
url='https://github.com/ankitchiplunkar/erasure.py',
include_package_data=True,
python_requires='>=3.6, <4',
keywords='ethereum',
packages=find_packages(exclude=["tests", "tests.*"]),
install_requires=[
"web3==5.3.0",
"cryptography==3.3.2",
"requests==2.22.0",
"pymultihash==0.8.2",
"pytest==5.3.1",
"pytest-cov==2.8.1",
"ipfshttpclient==0.4.12",
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
)