-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 909 Bytes
/
setup.py
File metadata and controls
33 lines (29 loc) · 909 Bytes
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
import setuptools
import os
import io
from setuptools import setup
with open("README.md", "r") as f:
readme = f.read()
setup(
name="pya3",
version="1.0.29",
author="Codifi",
author_email="pradeep@codifi.in",
description="Official Python SDK for Alice Blue API",
license="MIT",
long_description=readme,
long_description_content_type="text/markdown",
include_package_data=True,
url="https://a3.aliceblueonline.com/",
downloadable_url="https://github.com/jerokpradeep/pythonZebullAPI",
packages=["pya3"],
install_requires=["requests","pandas","websocket-client","rel"],
classifiers=[
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Natural Language :: English",
"Intended Audience :: Developers",
],
python_requires='>=3.7',
)