-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 971 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 971 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup
# Setup!
setup(
name="bigplanet",
description="VPLANET Data Analysis Tools",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
url="https://github.com/VirtualPlanetaryLaboratory/BigPlanet",
author="Caitlyn Wilhelm",
author_email="cwilhelm@uw.edu",
license="MIT",
packages=["bigplanet"],
include_package_data=True,
use_scm_version={
"version_scheme": "post-release",
"write_to": os.path.join("bigplanet", "bigplanet_version.py"),
"write_to_template": '__version__ = "{version}"\n',
},
install_requires=["numpy", "h5py", "argparse", "scipy", "pandas"],
entry_points={
"console_scripts": [
"bigplanet = bigplanet.bigplanet:Arguments",
"bpstatus = bigplanet.bpstatus:main",
],
},
setup_requires=["setuptools_scm"],
zip_safe=False,
)