-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 886 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
#!/usr/bin/env python
# Licensed under a 3-clause BSD style license - see LICENSE.rst
import os
from setuptools import setup
setup(
name='GaiaAlertsPy',
version='0.1.1',
author='Andy Tzanidakis',
author_email='[email protected]',
description='Fetch Gaia Photometric Science Alerts',
long_description='Fetch Gaia Photometric Science Alerts',
url='https://github.com/AndyTza/GaiaAlertsPy',
license='BSD-3-Clause',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
packages=['GaiaAlertsPy']
)