-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·51 lines (43 loc) · 1.42 KB
/
setup.py
File metadata and controls
executable file
·51 lines (43 loc) · 1.42 KB
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
#!/usr/bin/env python
from __future__ import absolute_import, print_function, unicode_literals
from setuptools import find_packages, setup
import lu_dj_utils
with open('README.rst') as f:
readme = f.read()
packages = find_packages()
classifiers = (
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
# the FSF refers to it as "Modified BSD License". Other names include
# "New BSD", "revised BSD", "BSD-3", or "3-clause BSD"
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Framework :: Django',
'Topic :: Utilities',
)
setup(
name="lu-dj-utils",
version=lu_dj_utils.__version__,
description="LookUP.cl's open source utilities for use in Django projects",
long_description=readme,
author='German Larrain',
author_email='glarrain@users.noreply.github.com',
url='https://github.com/lookup/lu-dj-utils',
packages=packages,
install_requires=['Django>=1.6'],
license='BSD',
zip_safe=False,
classifiers=classifiers,
tests_require=[
'Django>=1.6',
'mock>=1.0.1',
],
test_suite='runtests.runtests',
)