-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
96 lines (90 loc) · 3.22 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
#! /usr/bin/env python
# -*- coding: utf-8 -*-
#
# This file is part of django-oembed-works.
#
# django-oembed-works is a Django app that provides support for the oEmbed format.
#
# Development Web Site:
# - http://www.codetrax.org/projects/django-oembed-works
# Public Source Code Repository:
# - https://source.codetrax.org/hgroot/django-oembed-works
#
# Copyright 2010 George Notaras <gnot [at] g-loaded.eu>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# 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
sys.path.insert(0, os.path.abspath('src'))
from setuptools import setup
from oembed_works import get_version
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 = 'django-oembed-works',
version = get_version(),
license = 'Apache License version 2',
author = 'George Notaras',
author_email = 'gnot [at] g-loaded.eu',
maintainer = 'George Notaras',
maintainer_email = 'gnot [at] g-loaded.eu',
url = 'http://www.codetrax.org/projects/django-oembed-works',
description = 'django-oembed-works is a Django app that provides support for the oEmbed format.',
long_description = read('README'),
download_url = 'https://source.codetrax.org/hgroot/django-oembed-works',
platforms=['any'],
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software 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 = [
'oembed_works',
'oembed_works.templatetags',
'oembed_works.management',
'oembed_works.management.commands',
],
include_package_data = True,
#zip_safe = False,
)