-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
40 lines (36 loc) · 1.08 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
import os
from setuptools import setup, find_packages
import django_libs
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except IOError:
return ''
setup(
name="django-libs",
version=django_libs.__version__,
description=read('DESCRIPTION'),
long_description=read('README.rst'),
license='The MIT License',
platforms=['OS Independent'],
keywords='django, common, reusable, kickstart',
author='Martin Brochhaus',
author_email='mbrochh@gmail.com',
url="https://github.com/bitlabstudio/django-libs",
packages=find_packages(),
include_package_data=True,
install_requires=[],
tests_require=[
'django-nose',
'coverage',
'django-coverage',
],
test_suite='django_libs.tests.runtests.runtests',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
)