File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 77from setuptools import find_packages , setup
88
99# PROJECT SPECIFIC
10- NAME = "MACEst "
10+ NAME = "macest "
1111PACKAGES = find_packages (where = "src/" )
1212REQUIRED = Path ("requirements.txt" ).read_text ().splitlines ()
1313TEST_REQUIRED = Path ("test_requirements.txt" ).read_text ().splitlines ()
1414EXTRAS = {'tests' : [TEST_REQUIRED ]}
1515
1616
17- version = Path ("src/macest/__version__.py" ).read_text ().split ("__version__ = " )[- 1 ].strip ('"' )
17+ version = Path ("src/macest/__version__.py" ).read_text ().split ()[- 1 ].strip ('"' )
1818
1919setup (
20- name = 'MACEst' ,
20+ name = NAME ,
21+ author = "Mathew Rowe @ Oracle" ,
22+ 23+ url = "https://github.com/oracle/macest" ,
2124 version = version ,
2225 packages = PACKAGES ,
2326 package_dir = {"" : "src" },
2427 license = '??' ,
2528 long_description = open ('README.md' ).read (),
29+ long_description_content_type = 'text/markdown' ,
2630 install_requires = REQUIRED ,
2731 extras_requires = EXTRAS ,
2832)
You can’t perform that action at this time.
0 commit comments