-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 lines (32 loc) · 1.05 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
import os
from setuptools import setup, find_packages
VERSION = '0.2.0a1'
README_FILENAME = 'README.rst'
readme = open(os.path.join(os.path.dirname(__file__), README_FILENAME))
long_description = readme.read()
readme.close()
setup(
name='django-cbv-formpreview',
version=VERSION,
author='Ryan Kaskel',
author_email='dev@ryankaskel.com',
url='https://github.com/ryankask/django-cbv-formpreview',
license='BSD',
description='Django\'s FormPreview updated to use class based views.',
long_description=long_description,
packages=find_packages(),
package_data = {
'cbv_formpreview': ['templates/cbv_formpreview/*.html']
},
zip_safe=False,
classifiers=[
'Environment :: Web Environment',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
test_suite='cbv_formpreview.tests.runtests.runtests'
)