This repository has been archived by the owner on Jul 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
63 lines (49 loc) · 1.55 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# -*- coding:utf-8 -*-
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='sample',
version='0.1.0',
description='Filipenko Photometry Pipeline',
long_description='',
url='https://github.com/ishivvers/FlipperPhoto',
author='UC Berkeley Filippenko Group',
author_email='[email protected]',
license='BSD',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Astronomers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
keywords='astronomy photometry',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=['future',
'numpy>=1.1.0',
'astropy>=1.2.0',
'pandas>=0.15.0',
'sqlalchemy>=1.0.10',
'fabric>=1.12.0',
'matplotlib',
'requests',
'subprocess32'
],
extras_require={
'dev': ['check-manifest'],
'test': ['coverage', 'nose'],
'psql': ['psycopg2'],
'mysql': ['MySQL-python']
},
package_data={
'flipp': ['libs/sextractor_config/*', ],
},
entry_points={
'console_scripts': [
'flipprun=flipp.pipeline:console_run',
],
},
)