-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
29 lines (27 loc) · 1.03 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
from setuptools import setup
long_description = open('README.md').read()
setup(
name="skymapper",
description="Mapping astronomical survey data on the sky, handsomely",
long_description=long_description,
long_description_content_type='text/markdown',
version="0.4.7",
license="MIT",
author="Peter Melchior",
author_email="peter.m.melchior@gmail.com",
url="https://github.com/pmelchior/skymapper",
packages=["skymapper", "skymapper.survey"],
package_data={"skymapper.survey": ['*.ply']},
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Astronomy"
],
keywords = ['visualization','map projection','matplotlib'],
install_requires=["matplotlib", "numpy", "scipy", "healpy"]
)