File: setup.cfg

package info (click to toggle)
xraydb 4.5.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 50,668 kB
  • sloc: python: 3,317; makefile: 75; sh: 18
file content (54 lines) | stat: -rw-r--r-- 1,536 bytes parent folder | download
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
[metadata]
version = 4.5.3
name = xraydb
description = X-ray Reference Data for the Elements using SQLite
long_description =

    xraydb provides reference data for X-ray interactions with
    matter and a python module with functions for working with
    these data. The data is assembled into an SQLite3 database
    xraydb.sqlite.

author = Matthew Newville
author_email = matt.newville@gmail.com
url = https://xraypy.github.io/XrayDB/
license = MIT License
platforms = any
classifiers =
    Development Status :: 5 - Production/Stable
    Intended Audience :: End Users/Desktop
    Intended Audience :: Developers
    License :: OSI Approved :: MIT License
    Operating System :: MacOS :: MacOS X
    Operating System :: Microsoft :: Windows
    Operating System :: POSIX
    Topic :: Scientific/Engineering
    Topic :: Scientific/Engineering :: Visualization
    Programming Language :: Python
    Programming Language :: Python :: 3 :: Only
    Programming Language :: Python :: 3.8
    Programming Language :: Python :: 3.9
    Programming Language :: Python :: 3.10
    Programming Language :: Python :: 3.11
keywords = X-ray
project_urls =
    Source =  https://github.com/xraypy/XrayDB
    Documentation = https://xraypy.github.io/XrayDB
    Tracker = https://github.com/xraypy/XrayDB/issues

[options]
packages = find:
include_package_data = True
python_requires = >=3.8
install_requires =
   numpy>=1.12
   scipy>=1.5
   sqlalchemy
   platformdirs
   packaging

[options.extras_require]
doc =
    sphinx
test =
    pytest