-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
39 lines (37 loc) · 1.15 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
# -*- coding: utf-8 -*-
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='django2-resumable',
version='0.1.1',
author=u'Valerio Maggio',
author_email='valeriomaggio@gmail.com',
packages=['django2_resumable'],
include_package_data=True,
package_data={
'django2_resumable': [
'templates/django2_resumable/file_input.html',
'static/django2_resumable/js/resumable.js',
]
},
url='https://github.com/leriomaggio/django2-resumable',
license='MIT licence',
description='Django 2.x resumable uploads',
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
'Django >= 2.0',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
],
zip_safe=False,
)