-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (40 loc) · 1.51 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
import setuptools
import os
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
with open("requirements.txt", "r", encoding="utf-8") as fr:
requirements = fr.read().splitlines()
setuptools.setup(
name="skylight-gui",
version="v1.0b4",
author="Evripidis Gkanias",
maintainer="Evripidis Gkanias",
author_email="[email protected]",
maintainer_email="[email protected]",
description="A package providing a GUI for the skylight_gui package.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://pypi.org/project/skylight-gui/",
license="GPLv3+",
project_urls={
"Bug Tracker": "https://github.com/evgkanias/sky-gui/issues",
"Source": "https://github.com/evgkanias/sky-gui"
},
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.9",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Topic :: Scientific/Engineering :: Visualization"
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
package_data={'skylight_gui': [
os.path.join('data', 'icon.png')]
},
install_requires=requirements,
python_requires=">=3.9",
)