This repository has been archived by the owner on Dec 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
33bbaf1
commit 2dd9eba
Showing
2 changed files
with
35 additions
and
5 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,51 @@ | ||
import setuptools | ||
#!/usr/bin/env python | ||
|
||
from setuptools import setup, find_packages | ||
|
||
install_requires = [ | ||
'sortedcontainers>=1.5.9', | ||
'requests>=2.13.0', | ||
'six>=1.10.0', | ||
'websocket-client>=0.40.0', | ||
'pymongo>=3.5.1', | ||
] | ||
|
||
tests_require = [ | ||
'pytest', | ||
'python-dateutil>=2.7.5', | ||
] | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setuptools.setup( | ||
setup( | ||
name="ethfinex-python", | ||
version="0.1.0", | ||
author="Shane Fontaine", | ||
author_email="[email protected]", | ||
license='MIT', | ||
description="An unofficial python wrapper for the Ethfinex exchange", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/shanefontaine/ethfinex", | ||
packages=setuptools.find_packages(), | ||
packages=find_packages(), | ||
install_requires=install_requires, | ||
tests_require=tests_require, | ||
extras_require={ | ||
'test': tests_require, | ||
}, | ||
keywords=['ethfinex', 'ethfinex-api', 'orderbook', 'trade', 'bitcoin', 'ethereum', 'BTC', 'ETH', 'client', 'api', 'wrapper', | ||
'exchange', 'crypto', 'currency', 'trading', 'trading-api', 'ethfinex-trustless', 'bitfinex'], | ||
classifiers=[ | ||
"Programming Language :: Python :: 3.6", | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: Financial and Insurance Industry', | ||
'Intended Audience :: Information Technology', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
"Programming Language :: Python :: 3.6", | ||
], | ||
) |