-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (30 loc) · 1.08 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
29
30
31
32
import setuptools
README = open("README.rst", "r").read()
setuptools.setup(
name="textory",
author="Benjamin Roesner",
author_email="[email protected]",
description="Image Textures",
long_description=README,
url="https://github.com/benr0/textory",
packages=setuptools.find_packages(),
#include_package_data = True,
install_requires=["numpy>=1.16.5",
"xarray",
"scipy",
"scikit-image",
"dask",
"distributed"],
setup_requires=["setuptools_scm"],
use_scm_version=True,
python_requires=">=3.7",
extras_require={"test": ["pytest"]},
classifiers=["Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 " +
"or later (GPLv3+)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering"
],
)