-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
28 lines (24 loc) · 1.01 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import re
import setuptools
with open('HRR/__init__.py', 'r', encoding='utf-8') as fd:
version = re.search(
r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTILINE
).group(1)
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(name='hrr',
version=version,
author='Mohammad Mahmudul Alam',
license='MIT',
description='Holographic Reduced Representations',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
packages=setuptools.find_packages(),
install_requires=[],
python_requires='>=3.6',
)
print('Documentation: https://github.com/MahmudulAlam/Holographic-Reduced-Representations')