-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
39 lines (38 loc) · 1.44 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
from setuptools import setup, find_packages
import upy
setup(name='UPY',
version=upy.__version__,
description='''Open-source platform built on top of Django Web Framework, provides useful apps and tools for
the most common features to save your time and let you focus just on your specific needs.''',
author='20tab srl: Raffaele Colace - Gabriele Giaccari',
author_email='[email protected]',
url='http://upyproject.com/',
license='MIT License',
platforms=['OS Independent'],
classifiers=[
#'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Application Frameworks',
],
install_requires=[
'Django >=1.6',
'Pillow >=2.3',
'django_mptt >=0.6',
'django_imagekit >=3',
'django-modeltranslation >=0.7'
],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
package_data={
'': ['*.html', '*.css', '*.js', '*.gif', '*.png', ],
},
scripts=['upy/bin/upy']
)