-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
38 lines (32 loc) · 892 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
if not sys.version_info[0] == 3:
sys.exit("Sorry, Python 2 is not supported (yet)")
setup(
name='cosmicrays',
version='0.3.0',
description='Project for obtaining statistical information on cosmic rays incidence in FITS images',
long_description=readme,
author='Germán Schnyder',
author_email='gschnyder@gmail.com',
url='https://github.com/germanschnyder/cosmicrays',
license=license,
packages=find_packages(exclude=['docs', 'tests']),
entry_points={
'console_scripts': [
'cr_count=scripts:main',
]
},
install_requires=[
"numpy",
"scipy",
"scikit-image",
"astropy",
"argparse"
]
)