-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
executable file
·50 lines (45 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
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
from setuptools import setup
from setuptools.command.test import test as TestCommand
import compress_field
install_requires = [
'django>=1.2',
]
tests_requires = [
'django>=1.2',
'pytest==5.4.3',
'pytest-runner==5.2',
'pytest-django==3.9.0',
'pytest-cov==2.10.0',
]
setup(name='django-compress-field',
url='https://github.com/valdergallo/django-compress-field',
download_url='https://github.com/valdergallo/django-compress-field/tarball/v%s/' % compress_field.__version__,
author="valdergallo",
author_email='[email protected]',
keywords=['django', 'compress', 'field', 'zip', 'tar', 'gzip'],
description='Automantic compress files after upload',
license='FREEBSD',
classifiers=[
'Framework :: Django',
'Operating System :: OS Independent',
'Topic :: Utilities',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
include_package_data=True,
version=compress_field.__version__,
install_requires=install_requires,
tests_require=tests_requires,
setup_requires=['pytest-runner'],
platforms='any',
packages=[
'compress_field'
]
)