-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
32 lines (26 loc) · 905 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
from setuptools import setup, find_packages
def get_requires():
reqs = []
for line in open("requirements.txt", "r").readlines():
reqs.append(line)
return reqs
setup(
name='corgidrp',
version="1.1.2",
description='(Roman Space Telescope) CORonaGraph Instrument Data Reduction Pipeline',
#long_description="",
#long_description_content_type="text/markdown",
url='https://github.com/roman-corgi/corgidrp',
author='Roman Coronagraph Instrument CPP',
#author_email='',
license='BSD',
packages=find_packages(),
classifiers=[
# Indicate who your project is intended for
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Astronomy',
'Programming Language :: Python :: 3',
],
keywords='Roman Space Telescope Exoplanets Astronomy',
install_requires=get_requires()
)