-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (42 loc) · 1.14 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
from setuptools import (setup, find_packages)
with open("README.rst", 'r') as f:
readme = f.read()
setup(
name="izitest",
version="2.0.4",
author="Kenji 'Nhqml' Gaillac",
author_email="[email protected]",
license="GNU GPLv3",
description="An easy test suite",
long_description=readme,
long_description_content_type="text/x-rst",
url="https://izitest.rtfd.io",
project_urls={
"Source": "https://github.com/nhqml/izitest",
"Documentation": "https://izitest.rtfd.io"
},
packages=find_packages(),
include_package_data=True,
package_data={
"izitest": [
"py.typed",
"jinja2/*",
],
},
platforms=[
"Any",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=[
"PyYAML >= 5.3",
"termcolor >= 1.1.0",
"Jinja2 >= 2.11.1",
],
)