-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (17 loc) · 713 Bytes
/
setup.py
File metadata and controls
20 lines (17 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Tue Feb 28 09:53:56 2017
@author: musset
"""
from setuptools import find_packages, setup
setup(name="solar",
version="0.0.2",
description="Solar Zooniverse Processor for the jet zooniverse project. This will request and create data to populate the zooniverse project, and aggregate the results.",
author="Charlie Kapsiak, Sophie Musset ",
author_email='musset.sophie@gmail.com',
platforms=["any"], # or more specific, e.g. "win32", "cygwin", "osx"
url="https://github.com/CharKap/Solar_Zooniverse_Processor",
packages=find_packages(),
install_requires=["numpy>=1.11.0", "matplotlib>=1.5.3"]
)