-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
35 lines (32 loc) · 952 Bytes
/
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
[metadata]
name = fmetools
version = attr: fmetools.__version__
author = Safe Software Inc.
description = Tools for extending Safe Software's FME using Python.
long_description = file: README.md, CHANGES.md
long_description_content_type = text/markdown
keywords = FME fmeobjects
url = https://github.com/safesoftware/fmetools
project_urls =
Documentation = https://docs.safe.com/fme/html/fmetools/
license = BSD
license_file = LICENSE
classifiers =
Programming Language :: Python :: 3
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
License :: OSI Approved :: BSD License
Intended Audience :: Developers
[options]
package_dir =
=src
packages = find:
python_requires = >=3.8.0
include_package_data = True
[options.packages.find]
where=src
[bdist_wheel]
universal=1