-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (31 loc) · 1.22 KB
/
Copy pathsetup.py
File metadata and controls
49 lines (31 loc) · 1.22 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
from setuptools import setup
"""
# =============================================================================
# Installation neededs
# =============================================================================
conda create --name molly-plot python=3.8
conda install astropy=5
conda install -c conda-forge cmd2
# Install trm
pip install git+https://github.com/WarwickAstro/trm-molly.git#egg=trm-molly
"""
setup(
name="molly-plot",
version='0.0.1',
# metadata
author='Felipe Jimenez-Ibarra',
author_email='felipejimenezibarra@gmail.com',
python_requires='>3.8',
install_requires = ['astropy==5.1',
'cmd2==2.4',
'matplotlib==3.5.3',
'trm.molly @ http://github.com/WarwickAstro/trm-molly/tarball/master#egg=trm.molly-1'], #external packages as dependencies
include_package_data=True,
# To provide executable scripts, use entry points in preference to the
# "scripts" keyword. Entry points provide cross-platform support and allow
# pip to create the appropriate form of executable for the target platform.
entry_points={
'console_scripts': ['mplot=mollyplot.__main__:main'
]
},
)