-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
35 lines (29 loc) · 1.13 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
from os.path import dirname, join
from setuptools import setup
from simple_contact import get_version
requires = open(join(dirname(__file__), 'requirements.txt')).readlines()
setup(
name='django-simple-contact',
version=get_version(),
license='GNU Lesser General Public License (LGPL), Version 3',
description='Contact application for Django project',
long_description=('Simple Contact is a pluggable contact app for '
'Django Web Framework.'),
keywords='django apps contact form',
author='Klaus Laube',
author_email='[email protected]',
url='https://github.com/kplaube/django-simple-contact',
packages=['simple_contact', ],
include_package_data=True,
zip_safe=False,
install_requires=requires,
classifiers=[
'Environment :: Plugins',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)