-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (27 loc) · 855 Bytes
/
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
from setuptools import find_packages
from distutils.core import setup
import os
import io
def readfile(fname):
path = os.path.join(os.path.dirname(__file__), fname)
contents = io.open(path, encoding='utf8').read()
return contents
setup(
name="tzktPy",
version='0.1',
description='Python wrapper for the tzKT API',
long_description=readfile('README.md'),
long_description_content_type='text/markdown',
packages=find_packages(),
author=u'Doug Fenstermacher',
author_email='[email protected]',
url='https://github.com/dpfens/tzktPy',
keywords='tezos, blockchain',
platforms='any',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Intended Audience :: Developers',
]
)