Skip to content

Commit

Permalink
Merge pull request #6 from corva-ai/fix-ci-cd
Browse files Browse the repository at this point in the history
Add long description to setup.py, adjust other fields
  • Loading branch information
corva-alex-s authored Mar 25, 2024
2 parents ba7073a + 3005c67 commit a65bf15
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,20 @@
]

setuptools.setup(
name='corva-unit-converter',
name="corva-unit-converter",
author="Yuliya Klimushina",
author_email="[email protected]",
url='https://github.com/corva-ai/corva-convert-units-py',
url="https://github.com/corva-ai/corva-convert-units-py",
version=VERSION,
classifiers=CLASSIFIERS,
description='SDK for building Corva DevCenter Python apps.',
keywords='corva, unit converter',
py_modules=[file.stem for file in pathlib.Path('src').glob('*.py')],
description="Unit converter for O&G(and other) units",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
keywords="corva, unit converter",
py_modules=[file.stem for file in pathlib.Path("src").glob("*.py")],
packages=setuptools.find_packages("src"),
package_dir={"": "src"},
install_requires=[],
python_requires='>=3.8, <4.0',
license='MIT',
python_requires=">=3.8, <4.0",
license="MIT",
)

0 comments on commit a65bf15

Please sign in to comment.