-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
41 lines (38 loc) · 1.52 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
# Copyright Contributors to the Amundsen project.
# SPDX-License-Identifier: Apache-2.0
from setuptools import find_packages, setup
__version__ = '0.10.0'
setup(
name='amundsen-common',
version=__version__,
description='Common code library for Amundsen',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/amundsen-io/amundsencommon',
maintainer='Amundsen TSC',
maintainer_email='[email protected]',
packages=find_packages(exclude=['tests*']),
install_requires=[
# Packages in here should rarely be pinned. This is because these
# packages (at the specified version) are required for project
# consuming this library. By pinning to a specific version you are the
# number of projects that can consume this or forcing them to
# upgrade/downgrade any dependencies pinned here in their project.
#
# Generally packages listed here are pinned to a major version range.
#
# e.g.
# Python FooBar package for foobaring
# pyfoobar>=1.0, <2.0
#
# This will allow for any consuming projects to use this library as
# long as they have a version of pyfoobar equal to or greater than 1.x
# and less than 2.x installed.
'Flask>=1.0.2',
'attrs>=19.0.0',
'marshmallow>=3.0',
'marshmallow3-annotations>=1.0.0'
],
python_requires=">=3.6",
package_data={'amundsen_common': ['py.typed']},
)