-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
46 lines (45 loc) · 1.59 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
35
36
37
38
39
40
41
42
43
44
45
46
from setuptools import setup, find_packages
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
setup(
name="india_stocks_api",
version="0.1.0",
description="A unified API for Indian stock market brokers",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
author="Apurv Salunke",
author_email="[email protected]",
python_requires=">=3.8",
packages=find_packages(),
install_requires=[
"requests",
"pandas",
"numpy",
"pyotp",
],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Information Technology",
"Topic :: Software Development :: Build Tools",
"Topic :: Office/Business :: Financial :: Investment",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Environment :: Console",
],
extras_require={
"dev": ["pytest", "flake8"],
"docs": ["sphinx"],
},
project_urls={
"Documentation": "https://github.com/Apurv-Salunke/india-stocks-api/wiki",
"Source Code": "https://github.com/Apurv-Salunke/india-stocks-api",
},
)