-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
36 lines (33 loc) · 1.5 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
from setuptools import find_packages, setuptools
try:
with open('PYPI_README.md') as f:
long_description = f.read()
except Exception as e:
long_description=""
setuptools.setup(
name='cardano_explorer',
packages=find_packages(include=['cardano_explorer', 'cardano_explorer.blockfrost', 'cardano_explorer.cnft']),
include_package_data = True,
version='v0.6-beta.0',
description='Python wrapper for accessing and processing information stored on the Cardano blockchain using Blockfrost API.',
long_description=long_description,
long_description_content_type='text/markdown',
author='ATTA Djessy',
author_email = '[email protected]',
url = 'https://github.com/djessy-atta/py-cardano-explorer',
download_url = 'https://github.com/attadje/py-cardano-explorer/archive/refs/tags/v0.6-beta.0.tar.gz',
keywords = ['CARDANO', 'API', 'WRAPPER', 'BLOCKCHAIN', 'BLOCKFROST'],
license='MIT',
install_requires=['pandas>=1.3.2', 'requests>=2.26.0', 'typing>=3.7.4.3', 'numpy==1.21.2', 'tqdm>=4.62.2'],
tests_require=['pytest>=6.2.5', 'pytest-runner>=5.3.1', 'tqdm>=4.62.2'],
test_suite='tests',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
],
)