-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
60 lines (51 loc) · 1.48 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
51
52
53
54
55
56
57
58
59
60
# see documentation, e.g.
# - https://packaging.python.org/tutorials/packaging-projects/#configuring-metadata
# - https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html
# - https://www.python.org/dev/peps/pep-0314/
[metadata]
author = Stef Smeets
author_email = [email protected]
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Scientific/Engineering
description = A program for plotting powder diffraction patterns and background subtraction
keywords =
plotting
powder-diffraction
background-correction
profile-refinement
long_description = file: readme.md
long_description_content_type = text/markdown
name = xpdlines
project_urls =
Bug Tracker = https://github.com/stefsmeets/lines/issues
Documentation = https://github.com/stefsmeets/lines
url = https://github.com/stefsmeets/lines
version = 2.0.1
[options]
zip_safe = False
packages = find:
include_package_data = True
install_requires =
matplotlib
numpy
scipy
[options.extras_require]
build =
twine
wheel
build
[options.entry_points]
console_scripts =
lines = lines.lines:main
[flake8]
exclude = scripts
max-line-length = 96