-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.19 KB
/
Copy pathsetup.py
File metadata and controls
34 lines (32 loc) · 1.19 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import re
from setuptools import setup, find_packages
# perform the install
setup(
name="simput",
description="Python toolkit for driving form handling with SimPut",
long_description="This library is aimed to be used with PyWebVue/Trame to enable form handling of inputs.",
author="Kitware, Inc.",
author_email="kitware@kitware.com",
url=f"https://github.com/kitware/py-simput",
license="BSD-3-Clause",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: JavaScript",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords="Python Vue.js form",
packages=find_packages(".", exclude=("tests.*", "tests")),
package_dir={},
package_data={},
include_package_data=True,
install_requires=["pyyaml>=5.4", "pywebvue"],
)