-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (30 loc) · 1.1 KB
/
setup.py
File metadata and controls
36 lines (30 loc) · 1.1 KB
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
import setuptools
import sys
setuptools.setup(
name = 'bitforge',
version = '0.3',
url = 'https://github.com/coinforge/bitforge',
author = 'Yemel Jardi',
author_email = 'angel.jardi@gmail.com',
description = 'A python bitcoin library',
keywords = ['bitcoin', 'altcoin'], # arbitrary keywords
packages = setuptools.find_packages(),
setup_requires=['pytest-runner'],
tests_require=['pytest'],
install_requires = ['ecdsa==0.13'] + (['enum34==1.0.4'] if sys.version_info < (3, 4) else []),
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)