-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
43 lines (37 loc) · 1.22 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
43
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from os.path import join, dirname
import sys
import cmsplugin_contact_plus
from setuptools import setup, find_packages
def long_description():
try:
return open(join(dirname(__file__), 'README.md')).read()
except IOError:
return "LONG_DESCRIPTION Error"
version = cmsplugin_contact_plus.__version__
setup(
name='cmsplugin_contact_plus',
version=version,
packages=find_packages(),
license='BSD License',
url='https://github.com/arteria/cmsplugin-contact-plus/',
description='A django CMS plugin to dynamically create contact forms.',
long_description=long_description(),
author='arteria GmbH',
author_email='[email protected]',
# TODO: add others
install_requires=open('requirements.txt').read().splitlines(),
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Framework :: Django',
],
)