forked from aemsenhuber/collresolve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 841 Bytes
/
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
import setuptools
module = setuptools.Extension(
"collresolve",
sources = [ "collresolve.c", "collresolve_python.c",
"cambioni2019/accretion_efficiency.c", "cambioni2019/orbital_hnr.c", "cambioni2019/collision_classifier.c" ]
)
setuptools.setup(
name = "collresolve",
version = "1.3",
author = "Alexandre Emsenhuber",
author_email = "[email protected]",
description = "Analyse and predict outcomes of collision in N-body",
long_description = open( "README.md", "r" ).read(),
long_description_content_type = "text/markdown",
url = "https://github.com/aemsenhuber/collresolve",
ext_modules = [ module ],
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Science/Research",
],
)