Skip to content

Commit 77a842e

Browse files
authored
Create setup.py
1 parent d3302d9 commit 77a842e

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import setuptools
2+
3+
with open("api_bricks_sec_api_rest_README.md", "r") as fh:
4+
long_description = fh.read()
5+
6+
setuptools.setup(
7+
name="api-bricks-sec-api-rest",
8+
version="1.0.1",
9+
author="Tomasz Przybysz",
10+
author_email="[email protected]",
11+
description="SDKs for API BRICKS SEC API",
12+
long_description=long_description,
13+
long_description_content_type="text/markdown",
14+
url="https://docs.finfeedapi.com/sec-api/",
15+
packages=setuptools.find_packages(),
16+
classifiers=[
17+
"Programming Language :: Python :: 3",
18+
"License :: OSI Approved :: MIT License",
19+
"Operating System :: OS Independent",
20+
],
21+
python_requires='>=3.0',
22+
)

0 commit comments

Comments
 (0)