This repository was archived by the owner on Nov 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (45 loc) · 1.66 KB
/
setup.py
File metadata and controls
51 lines (45 loc) · 1.66 KB
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
47
48
49
50
51
from os import path
from setuptools import setup, find_packages
from fetchai.ledger import __version__ as version_string
project_root = path.dirname(__file__)
with open(path.join(project_root, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='fetchai-ledger-api',
version=version_string,
description='Tools and utilities for interacting with the ledger on the fetch network',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/fetchai/ledger-api-py',
author='Edward FitzGerald',
author_email='edward.fitzgerald@fetch.ai',
packages=find_packages(exclude=['contrib', 'docs', 'examples', 'tests', 'scripts']),
package_data={'fetchai': ['ledger/parser/etch.grammar']},
install_requires=[
'base58==2.0.1',
'ecdsa==0.15',
'lark-parser==0.8.1',
'msgpack==0.6.2',
'pyaes==1.6.1',
'requests==2.22.0',
'semver==2.10.2',
],
extras_require={
'dev': ['check-manifest', 'pydot'],
'test': ['coverage', 'pytest'],
},
classifiers=[
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
python_requires='>=3.5',
project_urls={
'Bug Reports': 'https://github.com/fetchai/ledger-api-py/issues',
'Developer Site': 'https://developer.fetch.ai/',
'Documentation': 'https://docs.fetch.ai/',
'Source': 'https://github.com/fetchai/ledger-api-py',
},
)