123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- # Licensed to the Apache Software Foundation (ASF) under one
- # or more contributor license agreements. See the NOTICE file
- # distributed with this work for additional information
- # regarding copyright ownership. The ASF licenses this file
- # to you under the Apache License, Version 2.0 (the
- # "License"); you may not use this file except in compliance
- # with the License. You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing,
- # software distributed under the License is distributed on an
- # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- # KIND, either express or implied. See the License for the
- # specific language governing permissions and limitations
- # under the License.
- """The script for setting up pydolphinscheduler."""
- import sys
- from os.path import dirname, join
- from setuptools import find_packages, setup
- if sys.version_info[0] < 3:
- raise Exception(
- "pydolphinscheduler does not support Python 2. Please upgrade to Python 3."
- )
- version = "0.1.0"
- # Start package required
- prod = [
- "py4j~=0.10",
- ]
- doc = [
- "sphinx>=4.3",
- "sphinx_rtd_theme>=1.0",
- ]
- test = [
- "pytest>=6.2",
- "freezegun>=1.1",
- "coverage>=6.1",
- ]
- style = [
- "flake8>=4.0",
- "flake8-docstrings>=1.6",
- "flake8-black>=0.2",
- "isort>=5.10",
- ]
- dev = style + test + doc
- all_dep = prod + dev
- # End package required
- def read(*names, **kwargs):
- """Read file content from given file path."""
- return open(
- join(dirname(__file__), *names), encoding=kwargs.get("encoding", "utf8")
- ).read()
- setup(
- name="apache-dolphinscheduler",
- version=version,
- license="Apache License 2.0",
- description="Apache DolphinScheduler Python API",
- long_description=read("README.md"),
- # Make sure pypi is expecting markdown
- long_description_content_type="text/markdown",
- author="Apache Software Foundation",
- author_email="dev@dolphinscheduler.apache.org",
- url="https://dolphinscheduler.apache.org/",
- python_requires=">=3.6",
- keywords=[
- "dolphinscheduler",
- "workflow",
- "scheduler",
- "taskflow",
- ],
- project_urls={
- "Homepage": "https://dolphinscheduler.apache.org",
- "Documentation": "https://dolphinscheduler.apache.org/python/index.html",
- "Source": "https://github.com/apache/dolphinscheduler/dolphinscheduler-python/pydolphinscheduler",
- "Issue Tracker": "https://github.com/apache/dolphinscheduler/issues",
- "Discussion": "https://github.com/apache/dolphinscheduler/discussions",
- "Twitter": "https://twitter.com/dolphinschedule",
- },
- packages=find_packages(where="src"),
- package_dir={"": "src"},
- include_package_data=True,
- package_data={
- "examples": ["examples.tutorial.py"],
- },
- platforms=["any"],
- classifiers=[
- # complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
- "Development Status :: 3 - Alpha",
- "Environment :: Console",
- "Intended Audience :: Developers",
- "License :: OSI Approved :: Apache Software License",
- "Operating System :: Unix",
- "Operating System :: POSIX",
- "Operating System :: Microsoft :: Windows",
- "Programming Language :: Python",
- "Programming Language :: Python :: 3",
- "Programming Language :: Python :: 3.6",
- "Programming Language :: Python :: 3.7",
- "Programming Language :: Python :: 3.8",
- "Programming Language :: Python :: 3.9",
- "Programming Language :: Python :: Implementation :: CPython",
- "Programming Language :: Python :: Implementation :: PyPy",
- "Topic :: Software Development :: User Interfaces",
- ],
- install_requires=prod,
- extras_require={
- "all": all_dep,
- "dev": dev,
- "style": style,
- "test": test,
- "doc": doc,
- },
- )
|