-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
100 lines (92 loc) · 3.02 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#! /usr/bin/env python
# -*- coding: utf-8 -*-
#
# This file is part of peacock
#
# mand is a Django based management interface for MySQL users and databases.
#
# Copyright 2012 Hideki Nara
#
# Licensed under the Simplified BSD License;
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.freebsd.org/copyright/freebsd-license.html
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# NOTES
#
# Create source distribution tarball:
# python setup.py sdist --formats=gztar
#
# Create binary distribution rpm:
# python setup.py bdist --formats=rpm
#
# Create binary distribution rpm with being able to change an option:
# python setup.py bdist_rpm --release 7
#
# Test installation:
# python setup.py install --prefix=/usr --root=/tmp
#
# Install:
# python setup.py install
# Or:
# python setup.py install --prefix=/usr
#
import sys
import os
import glob
sys.path.insert(0, os.path.abspath('src'))
from setuptools import setup
# - Meta Info
from accounts import get_version
NAME='peacock'
DESCRIPTION=''
PACKAGES=['accounts',]
SCRIPTS=glob.glob('src/scripts/*.py')
try:
INSTALL_REQUIRES=[ r for r in open('requirements.txt').read().split('\n') if len(r)>0]
except:
INSTALL_REQUIRES=[]
# - readme
def read(fname):
"""Utility function to read the README file."""
return open(os.path.join(os.path.dirname(__file__), fname)).read()
if __name__=='__main__':
setup(
name = NAME,
version = get_version(),
license = 'Simplfied BSD License',
author = 'Hideki Nara',
author_email = 'gmail [at] hdknr.com',
maintainer = 'Hideki Nara',
maintainer_email = 'gmail [at] hdknr.com',
url = 'https://github.com/hdknr/peacock',
description = 'peacock is a Django based management interface for databases.',
long_description = read('README'),
download_url = 'https://github.com/hdknr/peacock',
platforms=['any'],
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Simplifed BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
package_dir = {'': 'src'},
packages = PACKAGES,
include_package_data = True,
zip_safe = False,
scripts=SCRIPTS,
)