-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (33 loc) · 1.06 KB
/
setup.py
File metadata and controls
37 lines (33 loc) · 1.06 KB
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
#!/usr/bin/env python
import sys, os
from setuptools import setup, find_packages
version = '0.4.1'
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
setup(
name='django-ignoretests2',
version=version,
description="Ignore tests of given django apps",
long_description=README + '\nChangelog\n---------\n\n' + CHANGES,
classifiers=[
"Programming Language :: Python",
"Framework :: Django",
"License :: OSI Approved :: MIT License",
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
],
keywords='',
author='Johan Charpentier',
author_email='cyberj@arcagenis.org',
url='https://github.com/cyberj/django-ignoretests',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
],
entry_points="""
# -*- Entry points: -*-
""",
)