This repository was archived by the owner on Nov 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (32 loc) · 1.26 KB
/
setup.py
File metadata and controls
33 lines (32 loc) · 1.26 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
from setuptools import setup
setup(name = 'safetyculture-sdk-python',
version = '4.2.2',
description = 'iAuditor Python SDK and integration tools',
url = 'https://github.com/SafetyCulture/safetyculture-sdk-python',
author = 'SafetyCulture',
author_email = 'integrations@safetyculture.io',
include_package_data=True,
packages = ['safetypy', 'tools', 'tools/exporter', 'tools/import_grs', 'tools/export_users', 'tools/sync_users'],
entry_points = {
'console_scripts': [
'iauditor_exporter = tools.exporter.exporter:main',
'import_grs = tools.import_grs.import_grs:main',
'export_users = tools.export_users.export_users:main',
'sync_users = tools.sync_users.sync_users:main'
],
},
long_description=open('README.md', 'r').read(),
long_description_content_type="text/markdown",
install_requires = [
'python-dateutil>=2.5.0',
'pytz>=2015.7',
'tzlocal>=1.3',
'unicodecsv>=0.14.1',
'requests>=2.10.0',
'pyyaml>=3.11',
'future>=0.16.0',
'xlrd==1.1.0',
'pyOpenSSL>=17.5.0',
'virtualtime==1.6'
],
)