Skip to content

Commit e9c9237

Browse files
added setup to allow this to be a package
1 parent 39a9fe6 commit e9c9237

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

setup.py

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import setuptools
2+
3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
6+
# taken from https://github.com/CEA-COSMIC/ModOpt/blob/master/setup.py
7+
with open('requirements.txt') as open_file:
8+
install_requires = open_file.read()
9+
10+
setuptools.setup(
11+
name="zac-ramzi-sub-scripts",
12+
version="0.0.1",
13+
author="Zaccharie Ramzi",
14+
author_email="[email protected]",
15+
description="Submission scripts for JZ and TGCC",
16+
long_description=long_description,
17+
long_description_content_type="text/markdown",
18+
url="https://github.com/zaccharieramzi/submission-scripts",
19+
packages=setuptools.find_packages(),
20+
classifiers=[
21+
"Programming Language :: Python :: 3",
22+
"License :: OSI Approved :: MIT License",
23+
"Operating System :: OS Independent",
24+
],
25+
install_requires=install_requires,
26+
python_requires='>=3.6',
27+
)

0 commit comments

Comments
 (0)