This repository has been archived by the owner on Feb 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
59 lines (54 loc) · 2.12 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
##############################################################################
#
# Copyright (c) 2011-2016, 2degrees Limited <[email protected]>.
# All Rights Reserved.
#
# This file is part of djeneralize <https://github.com/2degrees/djeneralize>,
# which is subject to the provisions of the BSD at
# <http://dev.2degreesnetwork.com/p/2degrees-license.html>. A copy of the
# license should accompany this distribution. THIS SOFTWARE IS PROVIDED "AS IS"
# AND ANY AND ALL EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED, INCLUDING, BUT
# NOT LIMITED TO, THE IMPLIED WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST
# INFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE.
#
##############################################################################
import os
from setuptools import find_packages
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, "README.md")).read()
version = open(os.path.join(here, "VERSION")).readline().rstrip()
setup(
name="djeneralize",
version=version,
description="Generalizations of specialized models for Django",
long_description=README,
classifiers=[
"Development Status :: 7 - Inactive",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Application Frameworks"
],
keywords="django generalization specialization model",
author="2degrees Limited",
author_email="[email protected]",
url="https://github.com/2degrees/djeneralize",
license="BSD (http://dev.2degreesnetwork.com/p/2degrees-license.html)",
packages=find_packages(),
py_modules=[],
zip_safe=False,
install_requires=[
"Django >= 1.6, <1.9dev",
"six >= 1.10",
],
extras_require={
'nose': ["nose >= 0.11"],
},
test_suite="nose.collector",
)