Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
cumbof committed Jun 14, 2024
1 parent 9f19131 commit a68f9be
Showing 1 changed file with 21 additions and 19 deletions.
40 changes: 21 additions & 19 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,24 @@
sys.stdout.write("chopin2 requires Python 3.8 or higher. Your Python your current Python version is {}.{}.{}"
.format(sys.version_info[0], sys.version_info[1], sys.version_info[2]))

setuptools.setup(name='chopin2',
version=__version__,
author='Fabio Cumbo',
author_email='[email protected]',
url='http://github.com/cumbof/chopin2',
license='LICENSE',
packages=setuptools.find_packages(),
entry_points={
'console_scripts': ['chopin2 = chopin2.chopin2:chopin2']
},
description='Supervised Classification with Hyperdimensional Computing',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
install_requires=[
"numpy",
"pyspark",
"numba"
],
zip_safe=False)
setuptools.setup(
name="chopin2",
version=__version__,
author="Fabio Cumbo",
author_email="[email protected]",
url="http://github.com/cumbof/chopin2",
license="LICENSE",
packages=setuptools.find_packages(),
entry_points={
"console_scripts": ["chopin2 = chopin2.chopin2:chopin2"]
},
description="Supervised Classification with Hyperdimensional Computing",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
install_requires=[
"numpy",
"pyspark",
"numba"
],
zip_safe=False
)

0 comments on commit a68f9be

Please sign in to comment.