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 61
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
''' Installation script for texext package '''
from setuptools import setup
import versioneer
# Get install requirements from requirements.txt file
with open('requirements.txt', 'rt') as fobj:
install_requires = [line.strip() for line in fobj
if line.strip() and not line[0] in '#-']
# Get any extra test requirements
with open('test-requirements.txt', 'rt') as fobj:
test_requires = [line.strip() for line in fobj
if line.strip() and not line[0] in '#-']
setup(name='texext',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Sphinx extensions for working with LaTeX math',
author='Ondřej Čertík, Matthew Brett',
author_email='matthew.brett@gmail.com',
maintainer='Matthew Brett, Ondřej Čertík',
maintainer_email='matthew.brett@gmail.com',
url='http://github.com/matthew-brett/texext',
packages=['texext',
'texext.tests'],
package_data = {'texext': [
'tests/tinypages/*.rst',
'tests/tinypages/*.py',
'tests/tinypages/_static/*',
'tests/plotdirective/*.rst',
'tests/plotdirective/*.py',
'tests/plotdirective/_static/*',
'tests/custom_plotcontext/*.rst',
'tests/custom_plotcontext/*.py',
'tests/custom_plotcontext/_static/*',
'tests/custom_plotdirective/*.rst',
'tests/custom_plotdirective/*.py',
'tests/custom_plotdirective/_static/*']},
license='BSD license',
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
],
long_description = open('README.rst', 'rt').read(),
install_requires = install_requires,
extras_require = {'test': test_requires},
)
|