forked from joshuamsmith/ConnectPyse
-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
42 lines (39 loc) · 1.5 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
from setuptools import setup
with open('README.md', 'r') as f:
long_description = f.read()
setup(name='connectpyse',
version='0.7',
description='A ConnectWise API tool for the rest of us.',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5'
],
keywords='connectwise rest api',
url='https://github.com/markciecior/ConnectPyse',
author='Joshua M Smith (original), Mark Ciecior (forked), @wesgann',
author_email='[email protected] (original), [email protected] (forked)',
license='MIT',
packages=['.',
'connectpyse.company',
'connectpyse.expense',
'connectpyse.finance',
'connectpyse.marketing',
'connectpyse.procurement',
'connectpyse.project',
'connectpyse.sales',
'connectpyse.schedule',
'connectpyse.service',
'connectpyse.system',
'connectpyse.time'],
py_modules = ['connectpyse.cw_controller',
'connectpyse.config',
'connectpyse.cw_model',
'connectpyse.restapi'],
install_requires=[
'requests'
],
include_package_data=True,
zip_safe=False)