forked from zaccharieramzi/submission-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added setup to allow this to be a package
- Loading branch information
1 parent
39a9fe6
commit e9c9237
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import setuptools | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
# taken from https://github.com/CEA-COSMIC/ModOpt/blob/master/setup.py | ||
with open('requirements.txt') as open_file: | ||
install_requires = open_file.read() | ||
|
||
setuptools.setup( | ||
name="zac-ramzi-sub-scripts", | ||
version="0.0.1", | ||
author="Zaccharie Ramzi", | ||
author_email="[email protected]", | ||
description="Submission scripts for JZ and TGCC", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/zaccharieramzi/submission-scripts", | ||
packages=setuptools.find_packages(), | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
], | ||
install_requires=install_requires, | ||
python_requires='>=3.6', | ||
) |