-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
36 lines (31 loc) · 1.13 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
34
35
36
from setuptools import find_namespace_packages, setup
with open("requirements.txt") as f:
REQUIREMENTS = f.read().splitlines()
with open("test-requirements.txt") as f:
TEST_REQUIREMENTS = f.read().splitlines()
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="kiwi-json",
version="0.10.1",
url="https://github.com/kiwicom/kiwi-json",
author="Kiwi.com platform team",
author_email="platform@kiwi.com",
packages=find_namespace_packages(exclude=["test*"]),
install_requires=REQUIREMENTS,
tests_require=TEST_REQUIREMENTS,
description="DRY JSON encoder.",
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)