forked from iotaledger/ccurl.interface.py
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
42 lines (33 loc) · 1.15 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
from setuptools import setup, find_packages
with open('README.rst', 'r') as f: # type: StreamReader
long_description = f.read()
setup(
name = 'PyOTA-PoW',
description = 'Ccurl PoW Interface for PyOTA',
url = 'https://github.com/iotaledger/ccurl.interface.py',
version = '1.0.2',
long_description = long_description,
packages=['pow'],
package_dir={'pow': 'pow'},
package_data={'pow': ['libccurl.so']},
install_requires = ['pyota'],
tests_require = ['nose'],
test_suite = 'test',
test_loader = 'nose.loader:TestLoader',
license = 'MIT',
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords =
'iota,tangle,iot,internet of things,api,library,cryptocurrency,'
'balanced ternary',
author = 'Levente Pap',
author_email = '[email protected]',
)