forked from BurntSushi/nfldb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
67 lines (61 loc) · 2.11 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
import codecs
from distutils.core import setup
from glob import glob
import os.path as path
# Snippet taken from - http://goo.gl/BnjFzw
# It's to fix a bug for generating a Windows distribution on Linux systems.
# Linux doesn't have access to the "mbcs" encoding.
try:
codecs.lookup('mbcs')
except LookupError:
ascii = codecs.lookup('ascii')
def wrapper(name, enc=ascii):
return {True: enc}.get(name == 'mbcs')
codecs.register(wrapper)
install_requires = ['nflgame', 'psycopg2', 'enum34', 'pytz==2013b']
try:
import argparse
except ImportError:
install_requires.append('argparse')
try:
from collections import OrderedDict
except ImportError:
install_requires.append('ordereddict')
cwd = path.dirname(__file__)
longdesc = codecs.open(path.join(cwd, 'longdesc.rst'), 'r', 'utf-8').read()
version = '0.0.0'
with codecs.open(path.join(cwd, 'nfldb/version.py'), 'r', 'utf-8') as f:
exec(f.read())
version = __version__
assert version != '0.0.0'
docfiles = glob('doc/nfldb/*.html') + glob('doc/*.pdf') + glob('doc/*.png')
setup(
name='nfldb',
author='Andrew Gallant',
author_email='[email protected]',
version=version,
license='UNLICENSE',
description='A library to manage and update NFL data in a relational '
'database.',
long_description=longdesc,
url='https://github.com/BurntSushi/nfldb',
classifiers=[
'License :: Public Domain',
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Other Audience',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Database',
],
platforms='ANY',
packages=['nfldb'],
data_files=[('share/doc/nfldb', ['README.md', 'longdesc.rst', 'UNLICENSE']),
('share/doc/nfldb/doc', docfiles),
('share/nfldb', ['config.ini.sample'])],
install_requires=install_requires,
scripts=['scripts/nfldb-update']
)