-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (42 loc) · 1.43 KB
/
Copy pathsetup.py
File metadata and controls
43 lines (42 loc) · 1.43 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
import setuptools
setuptools.setup(
name='datacatalog-custom-model-manager',
version='0.1.1',
url='https://github.com/ricardolsmendes/datacatalog-custom-model-manager',
author='Ricardo Mendes',
author_email='ricardolsmendes@gmail.com',
license='MIT',
description='A package to load user-specified metadata models into Google Cloud Data Catalog',
platforms='Posix; MacOS X; Windows',
packages=setuptools.find_packages(where='./src'),
package_dir={'': 'src'},
entry_points={
'console_scripts': [
'datacatalog-custom-model = datacatalog_custom_model_manager:main',
],
},
include_package_data=True,
install_requires=(
'datacatalog-custom-entries-manager ~= 0.1.2',
'datacatalog-tag-manager ~= 2.1.2',
'datacatalog-tag-template-processor ~= 0.2.0',
'numpy >= 1.19.0, <= 1.19.3',
'pandas ~= 1.1.4',
),
setup_requires=('pytest-runner', ),
tests_require=(
'pytest-cov',
'tomli ~= 1.2.2',
),
python_requires='>=3.6',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)