-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (22 loc) · 751 Bytes
/
setup.py
File metadata and controls
29 lines (22 loc) · 751 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
from distutils.core import setup
setup(
# Application name:
name="MNn",
# Version number (initial):
version="0.1.0",
# Application author details:
author="Armando Rojas",
author_email="ozomatli@telmexmail.com",
# Packages
packages=['mnn', 'mnn.examples'],
package_dir={'mnn': 'mnn', 'mnn.examples': 'mnn/examples'},
package_data={'mnn.examples': ['density.dat']},
# Details
url="http://www.github.com/mdelorme/MNn",
# Requirements
install_requires=['numpy', 'emcee', 'corner'],
# Misc
license="BSD",
description="An analytical sum of Miyamoto-Nagai-negative model for galactic potential, density and forces evaluation.",
#long_description=open("README.txt").read(),
)