-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
52 lines (42 loc) · 1.5 KB
/
setup.cfg
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
50
[metadata]
name = flextoolslib
version = attr: flextoolslib.version
description = A tool for running Python scripts on FieldWorks Language Explorer projects
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/cdfarrow/flextools
license_files = LICENSE.txt
author = Craig Farrow
author_email = [email protected]
platforms = 'Windows', 'Linux'
classifiers =
Intended Audience :: Developers
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Text Processing :: Linguistic
Topic :: Database
License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
[options]
python_requires = >=3.8, <3.13
# The libraries needed at runtime.
install_requires =
flexlibs>=1.2.2, < 1.3
cdfutils>=1.0.8, < 1.1
# Tell setuptools about our Python package found in the folder
# 'flextoolslib', and configure it to be installed as 'flextoolslib'
# (i.e. into site-packages/flextoolslib).
# This will contain the sub-folders from the flextoolslib folder:
#
# flextoolslib
# ├───code
# ├───docs
# └───icons
#
package_dir =
flextoolslib = flextoolslib
# The docs and icons folders are specified in MANIFEST.in
# 'include_package_data = True' includes them in the wheel.
include_package_data = True