-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (36 loc) · 1.15 KB
/
setup.py
File metadata and controls
38 lines (36 loc) · 1.15 KB
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
from setuptools import setup
# Read the contents of the README
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='ocs-ingester',
version='3.1.0',
description='Ingest frames into the science archive of an observatory control system',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/observatorycontrolsystem/ingester',
packages=['ocs_ingester', 'ocs_ingester.utils', 'ocs_ingester.settings', 'ocs_ingester.scripts'],
python_requires='>=3.7',
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
],
install_requires=[
'astropy',
'requests',
'boto3',
'ocs_archive==0.4.0',
'python-dateutil',
'lcogt-logging',
'opentsdb-python-metrics>=0.2.0'
],
extras_require={
'tests': ['pytest']
},
entry_points={
'console_scripts': [
'ocs_ingest_frame = ocs_ingester.scripts.ingest_frame:main',
]
}
)