-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 756 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 756 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
from setuptools import setup
import comsky
setup(
name="comsky",
version=comsky.__version__,
author=comsky.__author__,
author_email=comsky.__author_email__,
url = comsky.__url__,
packages=["comsky"],
description=comsky.__desc__,
long_description=open("README.md").read(),
package_data={"": ["README.md", "LICENSE"]},
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
install_requires=["matplotlib", "numpy", "astropy", "healpy"],
)