File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+ )
You can’t perform that action at this time.
0 commit comments