-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
42 lines (35 loc) · 1.4 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
#!/usr/bin/env python3
import pathlib
from setuptools import setup, find_packages
HERE = pathlib.Path(__file__).parent
LONG_DESCRIPTION = (HERE / "README.md").read_text(encoding='utf-8')
setup(
version = '2.0.0',
name = 'koios-python',
author = 'Quixote Stake Pool',
author_email = '[email protected]',
url = 'https://github.com/QuixoteSystems',
license = 'MIT',
description = 'Python wrapper Library using Koios API for accessing information stored on the Cardano Blockchain',
long_description= LONG_DESCRIPTION,
long_description_content_type= 'text/markdown',
keywords = ['koios', 'blockchain', 'cardano', 'API', 'REST', 'RESTful'],
include_package_data = True,
packages = find_packages(include=['koios_python']),
install_requieres = ["requests"],
classifiers=[ # Optional
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3 :: Only',
],
)