-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·40 lines (35 loc) · 1.18 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
# coding: utf-8
from setuptools import setup, find_packages
import os
# not so bad: http://joebergantine.com/blog/2015/jul/17/releasing-package-pypi/
version = __import__('separate_users').__version__
def read(fname):
# read the contents of a text file
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="django-separate-users",
version=version,
url='http://github.com/bnzk/django-separate-users',
license='MIT',
platforms=['OS Independent'],
description="separate staff and non staff users with two proxy models",
long_description=read('PYPI.rst'),
author=u'Ben Stähli',
author_email='[email protected]',
packages=find_packages(),
install_requires=(
# 'Django>=1.3,<1.5', # no need to limit while in development
'Django>=1.11',
),
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
)