-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
57 lines (54 loc) · 1.75 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
57
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import djconnectwise
LONG_DESCRIPTION = open('README.md').read()
setup(
name="django-connectwise",
version=djconnectwise.__version__,
description='Django app for working with ConnectWise. '
'Defines models (tickets, members, companies, etc.) '
'and callbacks.',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
keywords='django connectwise rest api python',
packages=find_packages(),
author='Kerkhoff Technologies Inc.',
author_email='[email protected]',
url="https://github.com/KerkhoffTechnologies/django-connectwise",
include_package_data=True,
license='MIT',
install_requires=[
'requests',
'django',
'python-dateutil',
'django-model-utils',
'django-braces',
'django-extensions',
'retrying',
'Pillow',
],
test_suite='runtests.suite',
tests_require=[
'responses',
'model-mommy',
'django-coverage',
'names'
],
# Django likes to inspect apps for /migrations directories, and can't if
# package is installed as a egg. zip_safe=False disables installation as
# an egg.
zip_safe=False,
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Development Status :: 3 - Alpha',
],
)