-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (29 loc) · 1.09 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
from setuptools import find_packages, setup
setup(
name='django-computed-field',
version='0.8.0',
description='ComputedField(): automatically annotate expressions',
url='https://bitbucket.org/schinckel/django-computed-field',
author='Matthew Schinckel',
author_email='[email protected]',
packages=find_packages('src', exclude=['*.tests', '*.tests.*', 'tests.*', 'tests']),
package_dir={'': 'src'},
include_package_data=True,
package_data={},
python_requires='>=2.7',
install_requires=[
'django',
],
setup_requires=["pytest-runner", ],
tests_require=["pytest", "pytest-django", "pytest-cov", "dj-database-url"],
classifiers=[
'Development Status :: 1 - Alpha',
'Framework :: Django :: 2.0',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)