blob: 526ae94d5de3645ee0f5811a911f0d508a646588 [file] [log] [blame]
"""
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.
"""
import os
import sys
import pathlib
from setuptools import setup, find_packages
for p in pathlib.Path('./amaterasu').glob('**/*.pyi'):
print(str(p))
setup(
name='amaterasu-sdk',
version='0.2.0-incubating-rc4',
packages=find_packages(),
url='https://github.com/apache/incubator-amaterasu',
license='Apache License 2.0',
author='Apache Amaterasu (incubating)',
author_email="dev@amaterasu.incubator.apache.org",
description='Apache Amaterasu (incubating) is an open source, configuration managment and deployment framework for big data pipelines',
python_requires='>=3.4.*, <4',
install_requires=['stomp.py', 'pyYaml', 'munch'],
data_files=[
(
'shared/typehints/python{}.{}'.format(*sys.version_info[:2]),
pathlib.Path('./amaterasu').glob('**/*.pyi'),
),
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Java',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering'
]
)