-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
executable file
·27 lines (22 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
import os
from setuptools import setup, find_packages
def find_package_data(path):
return [os.path.join(root[len(path) + 1:], name) for root, dirs, files in os.walk(path) for name in files if not name.endswith('.py')]
setup(name='djangox',
description='Another way of using django. Convention over configuration for urls, mako template language support,'
'json response, REST style API, convenient scripts, ...',
author='Youngrok Pak',
author_email='[email protected]',
keywords= 'rest route autodiscover django djangox mako',
url='https://github.com/youngrok/djangox',
version='0.1.18',
packages=find_packages(),
package_data={
'djangox.apps.bs4tl': find_package_data('djangox/apps/bs4tl'),
'djangox.apps.tools': find_package_data('djangox/apps/tools')
},
classifiers = [
'Development Status :: 3 - Alpha',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: BSD License']
)