File tree 1 file changed +7
-3
lines changed
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 7
7
from setuptools import find_packages , setup
8
8
9
9
# PROJECT SPECIFIC
10
- NAME = "MACEst "
10
+ NAME = "macest "
11
11
PACKAGES = find_packages (where = "src/" )
12
12
REQUIRED = Path ("requirements.txt" ).read_text ().splitlines ()
13
13
TEST_REQUIRED = Path ("test_requirements.txt" ).read_text ().splitlines ()
14
14
EXTRAS = {'tests' : [TEST_REQUIRED ]}
15
15
16
16
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 ('"' )
18
18
19
19
setup (
20
- name = 'MACEst' ,
20
+ name = NAME ,
21
+ author = "Mathew Rowe @ Oracle" ,
22
+ author_email = "matthew.r.rowe@oracle.com" ,
23
+ url = "https://github.com/oracle/macest" ,
21
24
version = version ,
22
25
packages = PACKAGES ,
23
26
package_dir = {"" : "src" },
24
27
license = '??' ,
25
28
long_description = open ('README.md' ).read (),
29
+ long_description_content_type = 'text/markdown' ,
26
30
install_requires = REQUIRED ,
27
31
extras_requires = EXTRAS ,
28
32
)
You can’t perform that action at this time.
0 commit comments