forked from bitshares/uptick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·36 lines (32 loc) · 1.16 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
import sys
__version__ = "0.2.6"
assert sys.version_info[0] == 3, "Uptick requires Python > 3"
setup(
name="uptick",
version=__version__,
description="Command line tool to interface with the BitShares network",
long_description=open("README.md").read(),
download_url="https://github.com/xeroc/uptick/tarball/" + __version__,
author="Fabian Schuh",
author_email="[email protected]",
maintainer="Fabian Schuh",
maintainer_email="[email protected]",
url="http://uptick.rocks",
keywords=["bitshares", "library", "api", "rpc", "cli"],
packages=["uptick", "uptick.apis"],
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
],
entry_points={"console_scripts": ["uptick = uptick.cli:main"]},
install_requires=open("requirements.txt").readlines(),
setup_requires=["pytest-runner"],
tests_require=["pytest"],
include_package_data=True,
)