forked from peerplays-network/bos-mint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (45 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
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
from setuptools import setup
import sys
import os
__VERSION__ = "unknown"
with open(os.path.join(os.path.dirname(os.path.realpath(__file__)), 'bos_mint', 'VERSION')) as version_file:
__VERSION__ = version_file.read().strip()
assert sys.version_info[0] == 3, "We require Python > 3"
setup(
name='bos-mint',
version=__VERSION__,
description=(
'BOS Manual intervention module for PeerPlays'
),
long_description=open('README.md').read(),
download_url='https://github.com/pbsa/bos-mint/tarball/' + __VERSION__,
author='Blockchain BV',
author_email='[email protected]',
maintainer='Fabian Schuh',
maintainer_email='[email protected]',
url='http://pbsa.info',
keywords=['peerplays', 'bos'],
packages=[
"bos_mint",
"bos_mint.dataproxy_link"
],
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
],
entry_points={
'console_scripts': [
'bos-mint = bos_mint.cli:main',
],
},
install_requires=[
open("requirements.txt").readlines()
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
include_package_data=True,
)