Skip to content

Commit

Permalink
update pypi readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Gnpd committed Dec 22, 2023
1 parent 9494870 commit bc2e2c1
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
import os
import setuptools
from setuptools import setup

with open(os.path.join(os.path.dirname(__file__), "README.md")) as readme:
README = readme.read()
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

setuptools.setup(
name="HSPiPy",
version="0.0.1",
version="0.0.2",
author="Alejandro Gutierrez",
author_email="[email protected]",
description="Hansen Solubility Parameters in Python",
url="https://github.com/Gnpd/HSPy",
long_description=long_description,
long_description_content_type='text/markdown'
url="https://github.com/Gnpd/HSPiPy",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
Expand Down

0 comments on commit bc2e2c1

Please sign in to comment.