-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (28 loc) · 935 Bytes
/
setup.py
File metadata and controls
executable file
·29 lines (28 loc) · 935 Bytes
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
#!/usr/bin/env python3
from setuptools import setup, find_namespace_packages
setup(
name="smurf",
version="0.1",
description="Simulation Management using Unique Resource Fingerprints",
author="Thomas Rometsch",
author_email="thomas.rometsch@uni-tuebingen.de",
url="https://github.com/rometsch/smurf",
package_dir={'': 'src'},
package_data = { "" : ["*.sh", "shell*"] },
packages=find_namespace_packages(where="src"),
install_requires=[
'argcomplete',
],
zip_safe=False,
entry_points = {
'console_scripts': ['smurf=smurf._command_line_:main'],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: Unix",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Utilities"
],
python_requires='>=3.6',
)