-
Notifications
You must be signed in to change notification settings - Fork 57
/
setup.py
34 lines (32 loc) · 1.09 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
import setuptools
with open("README.rst", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pyRofex",
version="0.5.0",
author="Franco Zanuso",
author_email="francozanuso89@gmail.com",
description="Python connector for ROFEX's Rest and Websocket APIs.",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/gruporofex/pyRofex",
packages=setuptools.find_packages(where='src'),
package_dir={'': 'src'},
install_requires=[
'requests>=2.20.0',
'simplejson>=3.10.0',
'enum34>=1.1.6',
'websocket-client>=1.6.4',
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Software Development"
],
)