-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
28 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,33 @@ | ||
import sys, setuptools | ||
import setuptools | ||
import sys | ||
|
||
from hdlib import __version__ | ||
|
||
if sys.version_info[0] < 3: | ||
sys.stdout.write("hdlib requires Python 3 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='hdlib', | ||
version='0.1.0', | ||
author='Fabio Cumbo', | ||
author_email='[email protected]', | ||
url='http://github.com/cumbof/hdlib', | ||
license='LICENSE', | ||
packages=setuptools.find_packages(), | ||
description='Hyperdimensional Computing Library for building Vector Symbolic Architectures in Python', | ||
long_description=open('README.md').read(), | ||
long_description_content_type='text/markdown', | ||
install_requires=[ | ||
"numpy" | ||
], | ||
zip_safe=False) | ||
setuptools.setup( | ||
author="Fabio Cumbo", | ||
author_email="[email protected]", | ||
classifiers=[ | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Information Technology", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Scientific/Engineering", | ||
], | ||
description="Hyperdimensional Computing Library for building Vector Symbolic Architectures in Python", | ||
install_requires=["numpy>=1.22.3"], | ||
license="MIT", | ||
license_files=["LICENSE"], | ||
long_description=open("README.md").read(), | ||
long_description_content_type="text/markdown", | ||
name="hdlib", | ||
packages=setuptools.find_packages(), | ||
python_requires=">=3", | ||
url="http://github.com/cumbof/hdlib", | ||
version=__version__, | ||
zip_safe=False | ||
) |