-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (47 loc) · 1.77 KB
/
setup.py
File metadata and controls
51 lines (47 loc) · 1.77 KB
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
#!/usr/bin/env python3
# This file is part of the docpath package.
# Please see the COPYRIGHT and README.rst files at the top level of this
# repository for full copyright notices, license terms and support information.
from os.path import dirname, join
from setuptools import setup, find_packages
def read(fname):
with open(join(dirname(__file__), fname), 'r', encoding='utf-8') as file:
return file.read()
setup(
name='docpath',
version='0.1.1',
description="XPath style paths for docutils document trees.",
long_description=read('README.rst'),
author='David Harper',
author_email='python-packages@libateq.org',
url='https://bitbucket.org/libateq/docpath',
project_urls={
"Bug Tracker": 'https://bitbucket.org/libateq/docpath/issues',
"Documentation": 'https://docpath.readthedocs.io/',
"Source Code": 'https://bitbucket.org/libateq/docpath',
},
keywords='docpath docutils sphinx xpath',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', # noqa
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Documentation',
],
license='GPL-3',
platforms='any',
packages=find_packages(exclude=['tests']),
python_requires='>=3.5',
install_requires=[
'docutils>=0.14',
'simpleeval>=0.9',
],
zip_safe=False,
)