Skip to content

Commit

Permalink
main: add basic PyPi setup
Browse files Browse the repository at this point in the history
  • Loading branch information
balinthaller committed Dec 7, 2020
1 parent 73cc31b commit ef9e8ed
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
6 changes: 6 additions & 0 deletions config.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[flake8]
format = pylint
exclude = .svc,CVS,.bzr,.hg,.git,__pycache__,venv,build,databuilder/sql_parser/usage/presto/antlr_generated
max-complexity = 10
max-line-length = 120
ignore = NONE
27 changes: 27 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
from setuptools import setup, find_packages

__version__ = '0.1.0'

requirements = [
"boto3>=1.16.25",
"pyhocon>=0.3.57",
"amundsen-databuilder>=4.0.3",
"ruamel.yaml>=0.16.12",
]

setup(
name='carte-flyover',
version=__version__,
description='Carte Flyover – extract metadata from data storage into files',
url='https://github.com/CarteData/carte-flyover',
maintainer='Balint Haller',
maintainer_email='balint@haller.io',
packages=find_packages(exclude=['tests*']),
dependency_links=[],
install_requires=requirements,
python_requires='>=3.6',
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)

0 comments on commit ef9e8ed

Please sign in to comment.