Skip to content

Commit 2f4dc30

Browse files
committed
Fixed twine issues
1 parent bec3e43 commit 2f4dc30

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

setup.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,26 @@
77
from setuptools import find_packages, setup
88

99
# PROJECT SPECIFIC
10-
NAME = "MACEst"
10+
NAME = "macest"
1111
PACKAGES = find_packages(where="src/")
1212
REQUIRED = Path("requirements.txt").read_text().splitlines()
1313
TEST_REQUIRED = Path("test_requirements.txt").read_text().splitlines()
1414
EXTRAS = {'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

1919
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",
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
)

0 commit comments

Comments
 (0)