-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (39 loc) · 1.41 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
40
from setuptools import setup, find_packages
import os
import console
setup(
name='uwsgiit-console',
version=console.__version__,
description='A django app to simplify the use of uWSGI.it API',
long_description=open(
os.path.join(os.path.dirname(__file__), 'README.md')).read(),
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: JavaScript",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='uwsgit.it,console',
author='20tab S.r.l.',
author_email='[email protected]',
url='https://github.com/20tab/uwsgiit_console',
license='MIT License',
platforms=['OS Independent'],
install_requires=[
'Django{}'.format(console.DJANGO_VERSION),
'twentytab-select2{}'.format(console.SELECT2_VERSION),
'django-appconf{}'.format(console.APPCONF_VERSION),
'uwsgiit-py{}'.format(console.UWSGIIT_VERSION)
],
packages=find_packages(exclude=['demo', 'demo.*']),
include_package_data=True,
package_data={
'': ['*.html', '*.css', '*.js', '*.gif', '*.png', ],
}
)