-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (49 loc) · 1.59 KB
/
Copy pathsetup.py
File metadata and controls
54 lines (49 loc) · 1.59 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
""" Setup script for the Veracity Python SDK.
"""
import sys
import os
import os.path
from setuptools import setup
__author__ = 'DNV'
__copyright__ = 'DNV'
__licence__ = 'MIT Licence'
__maintainer__ = 'Veracity Team'
__email__ = 'veracity@dnv.com'
__url__ = 'https://github.com/veracity/Python-SDK-for-Veracity'
version = "0.0.2a1"
if __name__ == '__main__':
# Build a list of all files to be included in the Python package folder.
package_data = []
package_data.append('LICENCE')
package_data = {'veracity_platform': package_data}
setup(
name='veracity-platform',
version=version,
author=__author__,
# author_email=__email__,
maintainer=__maintainer__,
maintainer_email=__email__,
url=__url__,
description='DNV Veracity platform SDK',
long_description=(
'Software development kit for the DNV Veracity platform. Provides'
'programmatic access to the IDP and platform REST API.'
),
license=__licence__,
packages=['veracity_platform'],
package_dir={'': 'src'},
package_data=package_data,
install_requires=[
'aiohttp',
'msal',
'requests',
'azure-storage-blob',
'pandas',
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
zip_safe=False, # Required for conda build to work on Python 3.7.x.
)