-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (39 loc) · 1.21 KB
/
Copy pathsetup.py
File metadata and controls
43 lines (39 loc) · 1.21 KB
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
from setuptools import setup, find_packages
import re
import os
exec(open('rony/_version.py').read())
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='rony',
version=__version__,
author='A3Data',
author_email='rony@a3data.com.br',
url='https://github.com/A3Data/rony',
description='An opinionated Data Engineering framework',
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development'
],
keywords='data engineering mlops devops pipelines',
license='Apache License 2.0',
install_requires=[
'Click>=7.0.0,<8.0.0',
'Jinja2>=3.0.0,<=3.1.2',
'packaging>=21.0,<=21.3',
'unidiff>=0.7.0,<=0.7.4',
],
entry_points='''
[console_scripts]
rony=rony.cli:cli
''',
python_requires='>=3.6'
)