-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (29 loc) · 1011 Bytes
/
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
29
30
31
import setuptools
def readme():
with open("README.md", "r") as fh:
return fh.read()
setuptools.setup(
name="SimScale",
version="0.1.0",
author="Yizhar (Izzy) Toren",
author_email="ytoren+pysimscale@gmail.com",
description="Large scale similarity matrix calculus (parallelisation & chage of scale)",
long_description=readme(),
long_description_content_type="text/markdown",
url="github.com/ytoren/pysimscale",
packages=setuptools.find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Image Processing',
'Topic :: Scientific/Engineering :: Information Analysis'
],
python_requires='>=3.6',
install_requires=[
'numpy',
'scipy'
]
)