-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
72 lines (56 loc) · 2.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
64
65
66
67
68
69
70
71
72
#!/usr/bin/env python3
# -*- coding: UTF-8 -*-
"""Pitt-Google Broker.
* ---- This file is required for Read the Docs. ---- *
Example setup.py: https://github.com/pypa/sampleproject/blob/main/setup.py
The Pitt-Google Broker package is free software: you can redistribute it and/or
modify it under the terms of the GNU General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
The pgb_utils package is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
Public License for more details.
You should have received a copy of the GNU General Public License
along with pgb_utils. If not, see <http://www.gnu.org/licenses/>."""
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
# long_description = (here / 'README.md').read_text(encoding='utf-8')
with open('docs/requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='pitt_google_broker', # Required
version='0.5.0', # Required
description='A Google Cloud-based astronomical alert broker.',
# long_description=long_description,
# long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
],
keywords='astronomy, alert broker',
url='https://github.com/mwvgroup/Pitt-Google-Broker',
author='Troy Raen',
author_email='[email protected]',
packages=find_packages(), # Required
# For an analysis of "install_requires" vs pip's requirements files see:
# https://packaging.python.org/en/latest/requirements.html
install_requires=requirements,
# https://setuptools.readthedocs.io/en/latest/userguide/dependency_management.html#optional-dependencies
# extras_require={
# "beam": ["apache_beam[gcp]"],
# },
# python_requires='>=3.6, <4',
# If there are data files included in your packages that need to be
# installed, specify them here.
# package_data={ # Optional
# 'sample': ['package_data.dat'],
# },
)