forked from PynPoint/PynPoint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (38 loc) · 1.33 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
#!/usr/bin/env python
from setuptools import setup
try:
from pip._internal.req import parse_requirements
except ImportError:
from pip.req import parse_requirements
reqs = parse_requirements('requirements.txt', session='hack')
reqs = [str(ir.req) for ir in reqs]
setup(
name='pynpoint',
version='0.7.0',
description='Pipeline for processing and analysis of high-contrast imaging data',
long_description=open('README.rst').read(),
author='Tomas Stolker, Markus Bonse, Sascha Quanz, and Adam Amara',
author_email='[email protected]',
url='http://pynpoint.ethz.ch',
packages=['pynpoint',
'pynpoint.core',
'pynpoint.readwrite',
'pynpoint.processing',
'pynpoint.util'],
include_package_data=True,
install_requires=reqs,
license='GPLv3',
zip_safe=False,
keywords='pynpoint',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Astronomy',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
tests_require=['pytest'],
)