Skip to content

Commit

Permalink
Fixed twine issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mrowebot committed Aug 17, 2021
1 parent bec3e43 commit 2f4dc30
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,26 @@
from setuptools import find_packages, setup

# PROJECT SPECIFIC
NAME = "MACEst"
NAME = "macest"
PACKAGES = find_packages(where="src/")
REQUIRED = Path("requirements.txt").read_text().splitlines()
TEST_REQUIRED = Path("test_requirements.txt").read_text().splitlines()
EXTRAS = {'tests': [TEST_REQUIRED]}


version = Path("src/macest/__version__.py").read_text().split("__version__ = ")[-1].strip('"')
version = Path("src/macest/__version__.py").read_text().split()[-1].strip('"')

setup(
name='MACEst',
name=NAME,
author="Mathew Rowe @ Oracle",
author_email="matthew.r.rowe@oracle.com",
url="https://github.com/oracle/macest",
version=version,
packages=PACKAGES,
package_dir={"": "src"},
license='??',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
install_requires=REQUIRED,
extras_requires=EXTRAS,
)

0 comments on commit 2f4dc30

Please sign in to comment.