-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 1.18 KB
/
setup.py
File metadata and controls
36 lines (34 loc) · 1.18 KB
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
import setuptools
with open("README.md", "r", encoding="utf-8") as readme:
long_description = readme.read()
setuptools.setup(
name="azapyGUI",
version="0.1.1",
author="Mircea Marinescu",
author_email="mircea.marinescu@outlook.com",
description="GUI for azapy library - Financial Portfolio Optimization Algorithms",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Mircea-MMXXI/azapyGUI.git",
project_urls={
"Documentation": "https://azapyGUI.readthedocs.io/en/latest",
"Source": "https://github.com/Mircea-MMXXI/azapyGUI",
"Bug Tracker": "https://github.com/Mircea-MMXXI/azapyGUI/issues",
},
license="GPLv3",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
package_dir={"": "."},
packages=setuptools.find_packages(),
python_requires=">=3.11",
install_requires=[
'azapy>=1.2.5',
'numpy',
'pandas',
'matplotlib',
'xlsxwriter; platform_system=="Windows"'
],
)