-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
45 lines (44 loc) · 1.4 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
import setuptools
setuptools.setup(
name='datacatalog-tag-manager',
version='2.2.0',
url='https://github.com/ricardolsmendes/datacatalog-tag-manager',
author='Ricardo Mendes',
author_email='ricardolsmendes@gmail.com',
license='MIT',
description='A package to manage Google Cloud Data Catalog tags,'
' loading metadata from external sources',
platforms='Posix; MacOS X; Windows',
packages=setuptools.find_packages(where='./src'),
package_dir={'': 'src'},
entry_points={
'console_scripts': [
'datacatalog-tags = datacatalog_tag_manager:main',
],
},
include_package_data=True,
install_requires=(
'google-cloud-datacatalog ~=3.8.1',
'numpy >=1.19.0, <=1.19.3',
'pandas ~=1.1.4',
),
setup_requires=('pytest-runner ~=5.3.2', ),
tests_require=(
'coverage ==6.2',
'pytest ~=7.0.1',
'pytest-cov ~=2.12.1',
'typing-extensions ==4.1.1',
'tomli ~=1.2.3',
),
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',
],
)