-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (33 loc) · 1.08 KB
/
Copy pathsetup.py
File metadata and controls
33 lines (33 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
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",
"Crypto",
"cryptography"
]
setup(
name='shareconnect',
version='1.0.0.11',
author='rg-sharekhanapi',
author_email='shareconnect@sharekhan.com',
description='Sharekhan 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"
],
)