-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (29 loc) · 1.11 KB
/
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
# -*- coding: utf-8 -*-
import os
import setuptools
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
with open("requirements.txt", "r", encoding="utf-8") as f:
required = f.read().splitlines()
setuptools.setup(
name="pyflake-client",
version=os.getenv("PYFLAKE_SEMVER", "0.0.1"),
author="Tobias Antonsen",
author_email="tobias@tsant.no",
description="A client written in Python for testing integrations manipulating DDL in Snowflake.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Tsanton/pyflake-client",
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
install_requires=required,
packages=setuptools.find_packages(exclude=["*tests*"]),
python_requires=">=3.9, <3.12",
)