-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 699 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (23 loc) · 699 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
import os
import sys
import re
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='PyMGC3',
version='1.0.0',
author='C. Mateu',
author_email='cmateu@fisica.edu.uy',
packages=['bovy_coords','mgc3_lib','myutils'],
scripts=['bin/mgc3.py','bin/mgc3_get_pole_stars.py','bin/mgc3_plot_polemaps.py','bin/peakdetect_mgc3_polemaps.py','bin/mgc3_peakstars_plot.py','bin/join_mgc3_maps.py','bin/combine_mgc3_maps.py'],
url='https://github.com/cmateu/PyMGC3',
license='LICENSE.txt',
description='PyMGC3 codes',
long_description=open('README.rst').read(),
install_requires=[
"numpy",
"scipy"
],
)