-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
33 lines (30 loc) · 945 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
32
33
# -*- coding: UTF-8 -*-
from setuptools import setup
import os
read = lambda fname: open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "django-crudgenerator",
version = "0.0.9",
author = "Jonatan Alexis Anauati",
author_email = "[email protected]",
description = ("A simple CRUD generator for django.",),
license = "BSD",
keywords = "web django crud generator automatic",
packages=[\
'djangocrudgenerator',
'djangocrudgenerator/management',
'djangocrudgenerator/management/commands',
'djangocrudgenerator/templates',
'djangocrudgenerator/templatetags',
'djangocrudgenerator/config'
],
package_data= {
'':['*.html', '*.txt'],
},
long_description=read('README',),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
)