forked from cdfarrow/flexlibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
48 lines (40 loc) · 1.41 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
[metadata]
name = flexlibs
version = attr: flexlibs.version
description = A library for accessing FieldWorks Language Explorer projects
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/cdfarrow/flexlibs
license_files = LICENSE.txt
author = Craig Farrow
author_email = flextoolshelp@gmail.com
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 =
pythonnet >= 3.0.3, <3.1
# Tell setuptools about our Python package named 'flexlibs',
# and configure the distribution to install into site-packages/flexlibs.
# This will contain the sub-folders from the flexlibs folder:
#
# flexlibs
# ├───code
# ├───docs
# ├───examples
# └───tests
package_dir =
flexlibs = flexlibs
# The docs directory is specified in MANIFEST.in
# 'include_package_data = True' includes this in the wheel.
include_package_data = True