Skip to content

Commit efe5bac

Browse files
committed
initial commit
1 parent c4c61bd commit efe5bac

2 files changed

Lines changed: 24 additions & 0 deletions

File tree

setup.py

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
from setuptools import find_packages, setup
2+
3+
setup(
4+
name="sqlmesh",
5+
description="",
6+
#long_description=open("README.md").read(),
7+
#long_description_content_type="text/markdown",
8+
#url="https://github.com/TobikoData/sqlmesh",
9+
author="Tobiko Data, Inc.",
10+
#author_email="toby.mao@gmail.com",
11+
license="Apache-2.0",
12+
packages=find_packages(include=["sqlmesh", "sqlmesh.*"]),
13+
install_requires=[],
14+
extras_require={},
15+
classifiers=[
16+
"Development Status :: 2 - Pre-Alpha",
17+
"Intended Audience :: Developers",
18+
"Intended Audience :: Science/Research",
19+
"License :: OSI Approved :: Apache Software License",
20+
"Operating System :: OS Independent",
21+
"Programming Language :: SQL",
22+
"Programming Language :: Python :: 3 :: Only",
23+
],
24+
)

sqlmesh/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)