forked from mwshinn/spatiotemporal
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
40 lines (34 loc) · 1.3 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
# Part of the spatiotemporal package for python
# Copyright 2022 Max Shinn <[email protected]>
# Available under the MIT license
from setuptools import setup
with open("spatiotemporal/_version.py", "r") as f:
exec(f.read())
with open("README.md", "r") as f:
long_desc = f.read()
setup(
name = 'spatiotemporal',
version = __version__,
description = 'Tools for spatial and temporal autocorrelation',
long_description = long_desc,
long_description_content_type='text/markdown',
author = 'Max Shinn',
author_email = '[email protected]',
maintainer = 'Max Shinn',
maintainer_email = '[email protected]',
license = 'MIT',
python_requires='>=3.6',
url='https://github.com/mwshinn/spatiotemporal',
packages = ['spatiotemporal'],
install_requires = ['numpy', 'scipy', 'pandas'],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Topic :: Scientific/Engineering :: Bio-Informatics'],
)