-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
33 lines (32 loc) · 1.09 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
# pylint: disable=C0111
from setuptools import setup
setup(
name='uclcoin',
version='0.3.2',
description='UCLCoin: A naive blockchain/cryptocurrency implementation',
long_description=open('README.rst', 'r').read(),
author='Renato Orgito',
author_email='[email protected]',
maintainer='Renato Orgito',
maintainer_email='[email protected]',
url='https://github.com/orgito/uclcoin',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Topic :: Education',
'Topic :: Security :: Cryptography',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
],
keywords='uclcoin blockchain cryptocurrency',
packages=['uclcoin'],
install_requires=['coincurve', 'pymongo'],
python_requires='>=3.6',
project_urls={
'Bug Reports': 'https://github.com/orgito/uclcoin/issues',
'Source': 'https://github.com/orgito/uclcoin',
},
)