-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
25 lines (23 loc) · 892 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
from setuptools import setup, find_packages
with open('README.md') as f:
long_description = f.read()
setup(name='lookml-tools',
version='2.0.5',
description='Set of tools for handling LookML files: a linter, updater, and grapher',
url='https://github.com/ww-tech/lookml-tools',
author='Carl Anderson',
author_email='[email protected]',
long_description=long_description,
long_description_content_type='text/markdown',
license='Apache 2.0',
packages=find_packages(),
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent"
],
project_urls={
'Documentation': 'https://ww-tech.github.io/lookml-tools/',
'Source': 'https://github.com/ww-tech/lookml-tools',
})