-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (33 loc) · 889 Bytes
/
setup.py
File metadata and controls
34 lines (33 loc) · 889 Bytes
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
# -*- coding: utf-8 -*-
import os
from setuptools import setup
# Setup!
setup(
name="vspace",
description="VPLANET parameter sweep helper",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
url="https://github.com/VirtualPlanetaryLaboratory/vspace",
author="Russell Deitrick",
author_email="rdeitrick@uvic.ca",
license="MIT",
packages=["vspace"],
include_package_data=True,
use_scm_version={
"write_to": os.path.join("vspace", "vspace_version.py"),
"write_to_template": '__version__ = "{version}"\n',
},
install_requires=[
"numpy",
"matplotlib",
"argparse",
"astropy"
],
entry_points={
"console_scripts": [
"vspace=vspace.vspace:main",
],
},
setup_requires=["setuptools_scm"],
zip_safe=False,
)