-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
49 lines (44 loc) · 1.4 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
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python3
# Copyright 2023 Jason C. Nucciarone
# See LICENSE file for licensing details.
import pathlib
from setuptools import find_packages, setup
top_dir = pathlib.Path(__file__).parent
long_description = top_dir.joinpath("README.md").read_text()
setup(
name="cleantest",
version="0.4.0-rc1",
description="Clean tests for developers in a hurry",
long_description=long_description,
long_description_content_type="text/markdown",
author="Jason C. Nucciarone",
author_email="[email protected]",
license="Apache-2.0",
url="https://github.com/NucciTheBoss/cleantest",
python_requires=">=3.6",
packages=find_packages(
where="src",
include=["cleantest*"],
),
package_dir={"": "src"},
install_requires=[
"pylxd",
],
keywords=[
"testing",
"framework",
"continuous integration",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)