forked from philippeowagner/django-organizations
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
42 lines (38 loc) · 1.36 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from os.path import join, dirname
from setuptools import setup, find_packages
import organizations as app
def long_description():
try:
return open(join(dirname(__file__), 'README.rst')).read()
except IOError:
return "LONG_DESCRIPTION Error"
setup(
author="Ben Lopatin + arteria GmbH",
author_email="[email protected]",
name='django-ar-organizations',
version=app.__version__,
description='Group accounts for Django',
long_description=long_description(),
url='https://github.com/arteria/django-ar-organizations/',
license='BSD License',
platforms=['OS Independent'],
install_requires=open('requirements.txt').read().split('\n'),
# test_suite='tests.runtests.runtests',
include_package_data=True,
packages=find_packages(exclude=["tests.tests", "tests.test_app", "tests"]),
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
],
)