-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
36 lines (34 loc) · 1.24 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
from setuptools import setup, find_packages
from os.path import join, dirname
setup(
author='Ivan Vershigora',
author_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Build Tools',
],
description='Django wallet for Bitcoin and other cryptocurrencies',
long_description_content_type="text/markdown",
download_url = 'https://github.com/limpbrains/django-cc/tarball/0.2.3',
install_requires=[
'celery>=3',
'Django>=1.7',
'mock',
'pycoin>=0.90',
'python-bitcoinrpc>=1.0',
],
keywords='bitcoin django wallet cryptocurrency litecoin zcash dogecoin dash',
license='MIT License',
long_description=open(join(dirname(__file__), 'README.md')).read(),
name='django-cc',
packages=find_packages(),
url='https://github.com/limpbrains/django-cc',
version='0.2.3',
)