File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change
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
+
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
+ )
You can’t perform that action at this time.
0 commit comments