Dumb skeleton
This commit is contained in:
parent
4b66cefe2b
commit
ee31ec817c
4 changed files with 30 additions and 0 deletions
0
lolafect/__init__.py
Normal file
0
lolafect/__init__.py
Normal file
1
lolafect/__version__.py
Normal file
1
lolafect/__version__.py
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
__version__="dev"
|
||||||
2
lolafect/slack.py
Normal file
2
lolafect/slack.py
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
def say_hi():
|
||||||
|
return "Slack says hi"
|
||||||
27
setup.py
Normal file
27
setup.py
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
import pathlib
|
||||||
|
|
||||||
|
from setuptools import setup
|
||||||
|
|
||||||
|
about = {}
|
||||||
|
here = pathlib.Path(__file__).absolute()
|
||||||
|
with open("lolafect/__version__.py", "r") as f:
|
||||||
|
exec(f.read(), about)
|
||||||
|
|
||||||
|
with open("README.md", "r") as f:
|
||||||
|
readme = f.read()
|
||||||
|
|
||||||
|
setup(
|
||||||
|
name="lolafect",
|
||||||
|
version=about["__version__"],
|
||||||
|
description="Lolafect is a collection of Python bits that help us build our Prefect flows.",
|
||||||
|
long_description=readme,
|
||||||
|
long_description_content_type="text/markdown",
|
||||||
|
author="data-team",
|
||||||
|
author_email="data@lolamarket.com",
|
||||||
|
url="https://github.com/lolamarket/data-lolafect",
|
||||||
|
packages=["lolafect"],
|
||||||
|
package_dir={"lolafect": "lolafect"},
|
||||||
|
include_package_data=True,
|
||||||
|
python_requires=">=3.7",
|
||||||
|
install_requires=[],
|
||||||
|
)
|
||||||
Loading…
Add table
Add a link
Reference in a new issue