-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 1.19 KB
/
setup.py
File metadata and controls
33 lines (31 loc) · 1.19 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
import pathlib
import setuptools
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setuptools.setup(
name="scriptrunner-gui",
version="1.1.0",
author="Nghia Vo",
author_email="nvo@bnl.gov",
description="GUI software for rendering arguments of CLI Python scripts and scheduling runs.",
long_description=README,
long_description_content_type="text/markdown",
keywords=['Script rendering'],
url="https://github.com/algotom/scriptrunner",
download_url="https://github.com/algotom/scriptrunner.git",
license="Apache 2.0",
platforms="Any",
packages=setuptools.find_packages(include=["scriptrunner", "scriptrunner.*"]),
package_data={"scriptrunner.assets": ["ScriptRunner_icon.png"]},
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Natural Language :: English",
"Topic :: Scientific/Engineering"
],
entry_points={'console_scripts': ['scriptrunner = scriptrunner.main:main']},
python_requires='>=3.9',
)