forked from LaurentMT/pybitid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
18 lines (17 loc) · 768 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='pybitid',
packages=find_packages(exclude=['tests']),
version='0.0.4',
description='Python BitId Library',
author='laurentmt',
author_email='[email protected]',
maintainer='laurentmt',
url='https://github.com/LaurentMT/pybitid',
download_url='https://github.com/LaurentMT/pybitid/tarball/0.0.4',
keywords=['authentication', 'bitcoin', 'privacy'],
classifiers=['Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License',
'Natural Language :: English', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.3',
'Topic :: Security']
)