-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·72 lines (72 loc) · 2.58 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 python
# Licensed under a MIT style license - see LICENSE.rst
from __future__ import absolute_import, division, print_function
#
# Standard imports
#
import glob
import os
import sys
from importlib import import_module
#
# setuptools' sdist command ignores MANIFEST.in
#
from distutils.command.sdist import sdist as DistutilsSdist
from setuptools import setup, find_packages
#
# Begin setup
#
setup_keywords = dict()
setup_keywords['name'] = 'digestor'
setup_keywords['description'] = 'Scripts and metadata for loading survey data into the Data Lab database.'
setup_keywords['author'] = "NSF's NOIRLab Data Lab Project"
setup_keywords['author_email'] = '[email protected]'
setup_keywords['license'] = 'MIT'
setup_keywords['url'] = 'https://github.com/astro-datalab/digestor'
# setup_keywords['version'] = '0.2.0.dev82'
#
# Get version from __init__.py.
#
sys.path.insert(0, os.path.abspath('.'))
package = import_module(setup_keywords['name'])
setup_keywords['version'] = package.__version__
#
# Use README.rst as long_description.
#
setup_keywords['long_description'] = ''
if os.path.exists('README.rst'):
with open('README.rst') as readme:
setup_keywords['long_description'] = readme.read()
#
# Set other keywords for the setup function. These are automated, & should
# be left alone unless you are an expert.
#
# Treat everything in bin/ except *.rst as a script to be installed.
#
if os.path.isdir('bin'):
setup_keywords['scripts'] = [fname for fname in glob.glob(os.path.join('bin', '*'))
if not os.path.basename(fname).endswith('.rst')]
setup_keywords['provides'] = [setup_keywords['name']]
setup_keywords['requires'] = ['Python (>2.7.0)']
# setup_keywords['install_requires'] = ['Python (>2.7.0)']
setup_keywords['zip_safe'] = False
setup_keywords['use_2to3'] = False
setup_keywords['packages'] = find_packages()
# setup_keywords['package_dir'] = {'':'py'}
# setup_keywords['cmdclass'] = {'module_file': DesiModule, 'version': DesiVersion, 'test': DesiTest, 'sdist': DistutilsSdist}
setup_keywords['cmdclass'] = {'sdist': DistutilsSdist}
setup_keywords['test_suite'] = '{name}.test.{name}_test_suite'.format(**setup_keywords)
#
# Autogenerate command-line scripts.
#
setup_keywords['entry_points'] = {'console_scripts': ['sdss2dl = digestor.sdss:main',
'add_view_metadata = digestor.view:main']}
#
# Add internal data directories.
#
setup_keywords['package_data'] = {'digestor': ['data/*', 'templates/*'], }
# 'digestor.test': ['t/*']}
#
# Run setup command.
#
setup(**setup_keywords)