Skip to content

Commit

Permalink
added setup to allow this to be a package
Browse files Browse the repository at this point in the history
  • Loading branch information
zaccharieramzi committed Oct 15, 2020
1 parent 39a9fe6 commit e9c9237
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions setup.py
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',
)

0 comments on commit e9c9237

Please sign in to comment.