-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 1.02 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
from setuptools import setup
setup(name="yt_p3bh",
version="0.0.0",
description="Pop III black hole analysis for yt.",
author="Britton Smith",
author_email="[email protected]",
license="BSD",
keywords=["simulation", "merger-tree", "astronomy", "astrophysics"],
url="https://github.com/brittonsmith/yt_p3bh",
packages=["yt_p3bh"],
include_package_data=True,
classifiers=[
"Development Status :: 1 - Planning",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Natural Language :: English",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
install_requires=[
'numpy',
'yt>=3.4',
],
)