-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
35 lines (32 loc) · 1.11 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="pyCocos",
version="0.2.12",
author="Nacho Herrera",
author_email="github@nachoherrera.com.ar",
description="Python connector for Cocos Capital's Rest APIs.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/nacho-herrera/pyCocos",
packages=setuptools.find_packages(where='src'),
package_dir={'': 'src'},
install_requires=[
'requests>=2.31.0',
'simplejson>=3.19.1',
'pyotp>=2.9.0',
'cloudscraper>=1.2.71'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Software Development"
],
)