-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (27 loc) · 980 Bytes
/
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
# -*- coding: utf-8 -*-
# Copyright (c) 2014 by Pablo Martín <[email protected]>
import os
from setuptools import setup, find_packages
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(
name="testango",
version="0.0.2",
author="Pablo Martin",
author_email="[email protected]",
description="Example of test of reusable Django app",
long_description=(read('README.rst') + '\n\n' + read('CHANGES.rst')),
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
license="LGPL 3",
keywords="django,test,tox,travis,coveralls,coverage",
url='https://github.com/openwebinars-django/testango',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
)