Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
angel-one
GitHub Repository: angel-one/smartapi-python
Path: blob/main/setup.py
404 views
1
from setuptools import setup, find_packages
2
3
about={}
4
with open("README.md", "r") as readme_file:
5
readme = readme_file.read()
6
7
requirements = [
8
"requests>=2.18.4",
9
"six>=1.11.0",
10
"python-dateutil>=2.6.1"
11
]
12
13
setup(
14
name="smartapi-python",
15
version="1.5.5",
16
author="ab-smartapi",
17
author_email="[email protected]",
18
description="Angel Broking openApi integration",
19
long_description=readme,
20
long_description_content_type="text/markdown",
21
url="https://github.com/angelbroking-github/smartapi-python",
22
packages=find_packages(),
23
install_requires=requirements,
24
classifiers=[
25
"Development Status :: 5 - Production/Stable",
26
"Intended Audience :: Developers",
27
"Intended Audience :: Financial and Insurance Industry",
28
"Programming Language :: Python",
29
"Natural Language :: English",
30
"Programming Language :: Python :: 2.7",
31
"Programming Language :: Python :: 3.5",
32
"Programming Language :: Python :: 3.6",
33
"Programming Language :: Python :: 3.7",
34
"Topic :: Office/Business :: Financial :: Investment",
35
"Topic :: Software Development :: Libraries :: Python Modules",
36
"Topic :: Software Development :: Libraries"
37
],
38
)
39
40