-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (35 loc) · 1.05 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
import setuptools
import sys
sys.path.append("./src/")
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
import survtur_glacier
setuptools.setup(
name="survtur-glacier",
version=survtur_glacier.__version__,
author="Alexander Chzhen",
author_email="[email protected]",
description="GUI to work with AWS Glacier cold storage",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/survtur/survtur-glacier",
# project_urls={},
classifiers=[
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
install_requires=[
"boto3",
"PyQt5"
],
package_data={"": ['*.ini']},
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.8",
entry_points={
'console_scripts': [
'survtur-glacier = survtur_glacier:start',
],
},
)