-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
56 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from setuptools import find_packages, setup
setup(
name='django-gulp',
author='Beau Gunderson',
author_email='[email protected]',
url='https://github.com/beaugunderson/django-gulp',
description='Run your gulp tasks with runserver and collectstatic',
long_description_markdown_filename='README.md',
keywords=['django', 'gulp'],
version='4.1.0',
license='MIT',
packages=find_packages(),
install_requires=[
'ansicolors>=1.1.8,<2.0',
'env-tools>=2.2.0,<3.0',
'futures>=3.1.1,<4.0;python_version<"3.2"',
'psutil>=5.2.2,<6.0',
],
setup_requires=[
'setuptools-markdown'
],
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
])