forked from Scorpi000/QSExt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 1006 Bytes
/
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
# -*- coding: utf-8 -*-
import setuptools
import os
with open("README.rst", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="QSExt",
version="1.0.0",
author="scorpi000",
author_email="[email protected]",
maintainer="scorpi000",
maintainer_email="[email protected]",
description="Quant Studio Extensions",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/Scorpi000/QuantStudio/",
license="GPLv3",
platforms=["Windows"],
python_requires=">=3.5",
scripts=[],
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
'Topic :: Office/Business :: Financial :: Investment'
],
install_requires=[
"QuantStudio",
],
package_data={"QuantStudio": ["Resource/*"]}
)