-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (31 loc) · 940 Bytes
/
setup.py
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
import os
from os.path import dirname, join as pjoin
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open("README.md") as f:
long_description = f.read()
with open("CHANGES.txt") as f:
changes = f.read()
# Get the current package version.
version_ns = {}
with open(pjoin(here, "flytelineage", "_version.py")) as f:
exec(f.read(), {}, version_ns)
setup(
name="flytelineage",
version=version_ns["__version__"],
description="Flyte Data Lineage Python App & Library",
long_description=long_description + "\n\n" + changes,
classifiers=[
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
],
url="",
keywords="Flyte Data Lineage",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
entry_points="""\
[console_scripts]
flytelineage = flytelineage.app:main
""",
)