forked from ajhynes7/scikit-spatial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (37 loc) · 1.22 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
"""The setup script."""
from setuptools import setup, find_packages
with open('README.rst') as file_readme:
readme = file_readme.read()
setup(
author="Andrew Hynes",
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering',
],
description="Spatial objects and computations based on NumPy arrays.",
long_description=readme,
name='scikit-spatial',
keywords='scikit-spatial',
packages=find_packages(exclude=['tests*']),
package_data={
'skspatial': ['py.typed'], # Needed for distributing type annotations.
},
install_requires=[
'matplotlib>=3.3',
'numpy>=1.19',
],
setup_requires=['wheel'],
include_package_data=True,
license="BSD license",
url='https://github.com/ajhynes7/scikit-spatial',
version='5.2.0',
zip_safe=False,
)