-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
24 lines (23 loc) · 877 Bytes
/
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
from setuptools import setup
setup(# package information
name="stackclub",
version="0.1",
author="Phil Marshall",
author_email="dr.phil.marshall@gmail.com",
description="Utilities for use in e.g the Stack Club LSST tutorial notebooks",
long_description=open("README.md").read(),
url="https://github.com/LSSTScienceCollaborations/StackClub",
packages=['stackclub'],
package_dir={'stackclub':'stackclub'},
include_package_data=True,
package_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", "matplotlib"],
)