-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (43 loc) · 1.41 KB
/
setup.py
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
import os
from setuptools import setup, find_packages
long_description = (
"xmu is a Python utility used to read and write XML for Axiell EMu,"
" a collections management system used in museums, galleries, and"
" similar institutions."
"\n\n"
" Install with:"
"\n\n"
"```\n"
"pip install xmu\n"
"```"
"\n\n"
"Learn more:\n\n"
"+ [GitHub repsository](https://github.com/NMNH-IDSC/xmu)\n"
"+ [Documentation](https://xmu.readthedocs.io/en/latest/)"
)
setup(
name="xmu",
maintainer="Adam Mansur",
maintainer_email="mansura@si.edu",
description="Reads and writes XML for Axiell EMu",
long_description=long_description,
long_description_content_type="text/markdown",
version="0.1b8",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.12",
"Topic :: Text Processing :: Markup :: XML",
],
url="https://github.com/NMNH-IDSC/xmu.git",
license="MIT",
packages=find_packages(),
install_requires=["joblib", "lxml", "pyyaml"],
include_package_data=True,
zip_safe=False,
)