Commit 27f0d5bd1d9b6816982c18c45323ff7d1191efca
1 parent
61f34e10
Exists in
main
and in
1 other branch
first build
Showing
7 changed files
with
85 additions
and
1 deletions
Show diff stats
@@ -0,0 +1,19 @@ | @@ -0,0 +1,19 @@ | ||
1 | +Copyright (c) 2018 The Python Packaging Authority | ||
2 | + | ||
3 | +Permission is hereby granted, free of charge, to any person obtaining a copy | ||
4 | +of this software and associated documentation files (the "Software"), to deal | ||
5 | +in the Software without restriction, including without limitation the rights | ||
6 | +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
7 | +copies of the Software, and to permit persons to whom the Software is | ||
8 | +furnished to do so, subject to the following conditions: | ||
9 | + | ||
10 | +The above copyright notice and this permission notice shall be included in all | ||
11 | +copies or substantial portions of the Software. | ||
12 | + | ||
13 | +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
14 | +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
15 | +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
16 | +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
17 | +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
18 | +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
19 | +SOFTWARE. |
No preview for this file type
No preview for this file type
requirements.txt
@@ -0,0 +1,25 @@ | @@ -0,0 +1,25 @@ | ||
1 | +[metadata] | ||
2 | +name = xsd2tkform | ||
3 | +version = 0.1.0 | ||
4 | +author = Alexandre Schulz | ||
5 | +author_email = alexandre.schulz@irap.omp.eu | ||
6 | +description = Generate Tkinter forms from XSD files | ||
7 | +long_description = API for generating Tkinter forms from XSD files | ||
8 | +long_description_content_type = file: README.md | ||
9 | +url = https://github.com/Dolgalad/xsd2tkform | ||
10 | +project_urls = | ||
11 | + Bug Tracker = https://github.com/Dolgalad/xsd2tkform/issues | ||
12 | +classifiers = | ||
13 | + Programming Language :: Python :: 3 | ||
14 | + Licence :: OSI Approved :: MIT License | ||
15 | + Operating System :: OS Independent | ||
16 | + | ||
17 | +[options] | ||
18 | +package_dir = | ||
19 | + = . | ||
20 | +packages = find: | ||
21 | +python_requires = >=3.6 | ||
22 | + | ||
23 | +[options.packages.find] | ||
24 | +where = . | ||
25 | + |
@@ -0,0 +1,35 @@ | @@ -0,0 +1,35 @@ | ||
1 | +import setuptools | ||
2 | +import io | ||
3 | + | ||
4 | +with io.open("README.md", "r", encoding="utf-8") as fh: | ||
5 | + long_description = fh.read() | ||
6 | + | ||
7 | +requirements = ["lxml", "tkcalendar"] | ||
8 | + | ||
9 | +setuptools.setup( | ||
10 | + name="xsd2tkform", | ||
11 | + version="0.1.0", | ||
12 | + author="Alexandre Schulz", | ||
13 | + author_email="alexandre.schulz@irap.omp.eu", | ||
14 | + description="Generate Tkinter forms from XSD files", | ||
15 | + long_description=long_description, | ||
16 | + long_description_content_type="text/markdown", | ||
17 | + url="https://github.com/Dolgalad/xsd2tkform", | ||
18 | + project_urls={ | ||
19 | + "Bug Tracker": "https://github.com/Dolgalad/xsd2tkform/issues", | ||
20 | + }, | ||
21 | + classifiers=[ | ||
22 | + "Programming Language :: Python :: 3", | ||
23 | + "License :: OSI Approved :: MIT License", | ||
24 | + "Operating System :: OS Independent", | ||
25 | + ], | ||
26 | + package_dir={"": "."}, | ||
27 | + packages=setuptools.find_packages(where="."), | ||
28 | + python_requires=">=3.6", | ||
29 | + install_requires=requirements, | ||
30 | + package_data={"":["*.png"], | ||
31 | + "xsd2tkform":["img/*.png"], | ||
32 | + }, | ||
33 | + include_package_data=True, | ||
34 | +) | ||
35 | + |