forked from svetlyak40wt/django-globals
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 910 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (24 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
setup(
name = 'django-globals',
version = '0.2.1',
description = 'Very simple application, that allow to define a thread specific global variables.',
keywords = 'django apps',
license = 'New BSD License',
author = 'Alexander Artemenko',
author_email = 'svetlyak.40wt@gmail.com',
url = 'http://github.com/svetlyak40wt/django-globals/',
install_requires = [],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Plugins',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
package_dir = {'': 'src'},
packages = find_packages('src', exclude = ['example']),
include_package_data = True,
)