forked from drphilmarshall/OM10
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 869 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 869 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
from setuptools import setup
setup(# package information
name="om10",
version="0.7",
author="Phil Marshall",
author_email="dr.phil.marshall@gmail.com",
description="A toolkit to use the OM10 catalog",
long_description=open("README.md").read(),
url="https://github.com/drphilmarshall/OM10",
packages=['om10'],
package_dir={'om10':'om10'},
include_package_data=True,
package_data={'om10': ['example_data/*']},
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=["numpy", "scipy", "matplotlib", "astropy", "sklearn"],
)