-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (42 loc) · 1.12 KB
/
setup.py
File metadata and controls
55 lines (42 loc) · 1.12 KB
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
49
#!/usr/bin/env/python
"""Installation script
"""
import setuptools
import versioneer
version = versioneer.get_version()
cmdclass = versioneer.get_cmdclass()
setuptools.setup(
version=version,
cmdclass=cmdclass
)
## import os
##
## try:
## from setuptools import setup
## except ImportError:
## from distutils.core import setup
##
## with open('requirements.txt') as f:
## install_requires = f.read().splitlines()
##
## LONG_DESCRIPTION = """
## pystareplotlib is a simple plotting mechanism arising from the need to visualize and explore STARE-based methods of Earth Science data analysis."""
##
## # get all data dirs in the datasets module
## data_files = []
##
## setup(
## name="pystareplotlib",
## version='0.1.0',
## description="STARE Hello World Plotting",
## license="MIT",
## author="Michael Rilee",
## author_email="mike@rilee.net",
## url="https://github.com/SpatioTemporal/pystareplotlib",
## long_description=LONG_DESCRIPTION,
## packages=[
## "pystareplotlib"
## ],
## python_requires=">=3.5",
## install_requires=install_requires,
## )