forked from mozilla-services/mozilla-pipeline-schemas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (23 loc) · 834 Bytes
/
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
from setuptools import setup, find_namespace_packages
setup(
name="mozilla-pipeline-schemas",
version="0.2.0",
use_incremental=True,
author="Mozilla Corporation",
author_email="[email protected]",
description="Tooling for managing schemas for schema ingestion",
url="https://github.com/mozilla-services/mozilla-pipeline-schemas",
packages=find_namespace_packages(
include=["mozilla_pipeline_schemas.*", "mozilla_pipeline_schemas"]
),
package_data={},
include_package_data=True,
install_requires=["click"],
long_description="Tooling for managing schemas for schema ingestion",
long_description_content_type="text/markdown",
python_requires=">=3.6",
entry_points="""
[console_scripts]
mps=mozilla_pipeline_schemas.cli:entry_point
""",
)