Skip to content

Commit

Permalink
fix long description
Browse files Browse the repository at this point in the history
  • Loading branch information
fgregg committed Jun 27, 2024
1 parent 910232c commit d8e443f
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
try:
from setuptools import setup
except ImportError :
raise ImportError("setuptools module required, please go to https://pypi.python.org/pypi/setuptools and follow the instructions for installing setuptools")
except ImportError:
raise ImportError(
"setuptools module required, please go to https://pypi.python.org/pypi/setuptools and follow the instructions for installing setuptools"
)

setup(
name='parseratorvariable',
url='https://github.com/datamade/parseratorvariables',
version='1.0.0',
description='Structured variable type for dedupe',
packages=['parseratorvariable'],
install_requires=['dedupe>=3.0.0',
'numpy',
'probableparsing'],
license='The MIT License: http://www.opensource.org/licenses/mit-license.php'
)
name="parseratorvariable",
url="https://github.com/datamade/parseratorvariables",
version="1.0.0",
description="Structured variable type for dedupe",
packages=["parseratorvariable"],
install_requires=["dedupe>=3.0.0", "numpy", "probableparsing"],
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
license="The MIT License: http://www.opensource.org/licenses/mit-license.php",
)

0 comments on commit d8e443f

Please sign in to comment.