-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 991 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
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name = 'sloany',
scripts = ['sloany.py'],
version = '0.1dev',
description = 'A command line utility to query the SDSS database and retrieve spectra files.',
author = 'Loïc Séguin-C.',
url = 'https://github.com/loicseguin/sloany',
download_url = 'https://github.com/loicseguin/sloany/tarball/master',
keywords = ['SDSS', 'Sloan', 'stars', 'astronomy'],
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Database :: Front-Ends',
'Topic :: Scientific/Engineering :: Astronomy'
],
long_description = open('README.rst', 'r').read()
)