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
|
#!/usr/bin/env python
"""Setup script for packaging et_xmfile.
"""
import sys
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
try:
with open(os.path.join(here, 'README.rst')) as f:
README = f.read()
except IOError:
README = ''
sys.path.append('')
from et_xmlfile import (
__author__,
__license__,
__author_email__,
__url__,
__version__
)
setup(name='et_xmlfile',
packages=find_packages(
exclude=["*.tests*",]
),
# metadata
version=__version__,
description="An implementation of lxml.xmlfile for the standard library",
long_description=README,
author=__author__,
author_email=__author_email__,
url=__url__,
license=__license__,
python_requires=">=3.8",
project_urls={
'Documentation': 'https://openpyxl.pages.heptapod.net/et_xmlfile/',
'Source': 'https://foss.heptapod.net/openpyxl/et_xmlfile',
'Tracker': 'https://foss.heptapod.net/openpyxl/et_xmfile/-/issues',
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'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',
'Programming Language :: Python :: 3.13',
],
)
|