-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 970 Bytes
/
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
#!/usr/bin/env python3
import os
from setuptools import setup
def read(fname):
# Utility function to read the README file.
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "cryptocoins",
version = "0.0.1",
author = "Tocho Tochev",
author_email = "[email protected]",
description = ("library for manipulating crypto currency addresses"),
license = "MIT",
keywords = "cryptocurrency bitcoin litecoin dogecoin btc ltc",
url = "https://github.com/tochev/python3-cryptocoins",
packages=['cryptocoins'],
scripts=['bin/generate-coin-address'],
long_description=read('README.md'),
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Topic :: Utilities",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
install_requires=read('requirements.txt').strip().splitlines(),
)