forked from StoxKart-Tech/superrapi-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (34 loc) · 1.08 KB
/
Copy pathsetup.py
File metadata and controls
34 lines (34 loc) · 1.08 KB
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
from setuptools import setup, find_packages
about={}
with open("README.md", "r") as readme_file:
readme = readme_file.read()
requirements = [
"requests>=2.18.4",
"six>=1.11.0",
"cryptography",
"logzero",
"pyotp"
]
setup(
name='superapi',
version='1.0.0.11',
author='rg-superapi',
author_email='rima@stoxkart.com',
description='Stoxkart Data Feed Trading Api Server',
packages=find_packages(),
long_description=readme,
long_description_content_type="text/markdown",
install_requires=requirements,
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Natural Language :: English",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries"
],
)