forked from jeffkit/autoforms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (21 loc) · 758 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from autoforms import version
url="http://autoforms.sandbox.jeffkit.info"
long_description="Autoforms is a custom form engine for django framework . For more information see " + url
setup(name="autoforms",
version=version,
description="Custom form engine for django",
maintainer="jeff kit",
maintainer_email="[email protected]",
url = url,
long_description=long_description,
packages=find_packages('.'),
package_data = {
'autoforms': ['templates/autoforms/*.html',
'templates/autoforms/admin/*.*',
'templates/admin/autoforms/form/*.html',
'locale/en/LC_MESSAGES/django.*',
'locale/zh_CN/LC_MESSAGES/django.*'],
}
)