-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
50 lines (45 loc) · 1.48 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
49
50
from os.path import join, dirname
from setuptools import setup, find_packages
import versioneer
def read(fname):
return open(join(dirname(__file__), fname)).read()
setup(
name="pySCM",
version=versioneer.get_version(),
author="Jared Lewis",
author_email="jared@bodekerscientific.com",
description="A basic simple climate model in Python",
license="MIT",
keywords="simple climate model SCM climate science",
url="http://pythonhosted.org/pySCM",
packages=find_packages(),
long_description=read('README.rst'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
install_requires=[
"matplotlib",
"numpy"
],
project_urls={
"Bug Reports": "https://github.com/bodekerscientific/pyscm/issues",
"Source": "https://github.com/bodekerscientific/pyscm/",
},
tests_require=["pytest", "pytest-cov", "codecov"],
setup_requires=["pytest-runner"],
extras_require={
"docs": ["sphinx >= 1.4", "sphinx_rtd_theme", "sphinx-autodoc-typehints"],
"dev": [
"setuptools>=38.6.0",
"twine>=1.11.0",
"wheel>=0.31.0",
],
},
cmdclass=versioneer.get_cmdclass()
)