-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·44 lines (39 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
40
41
42
43
44
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Django subcommand
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
install_requires = ['django']
extras_require = {}
extras_require['test'] = [
"pytest",
"pytest-mock",
"pytest-django",
"pytest-coverage",
"coverage",
"codecov",
"flake8"]
setup(
name='dj.subcommand',
version='0.0.3',
description='Django subcommand',
long_description='Django subcommand',
url='https://github.com/translate/dj.subcommand',
author='Ryan Northey',
author_email='[email protected]',
license='GPL3',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
('License :: OSI Approved :: '
'GNU General Public License v3 or later (GPLv3+)'),
'Programming Language :: Python :: 2.7',
],
keywords='django subcommand',
install_requires=install_requires,
extras_require=extras_require,
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
namespace_packages=['dj'],
include_package_data=True)