Merge with project skeleton

master
Jason R. Coombs 9 years ago
commit 2d2d59a984
  1. 2
      .hgignore
  2. 0
      CHANGES.txt
  3. 2
      README.txt
  4. 19
      docs/conf.py
  5. 8
      docs/history.rst
  6. 22
      docs/index.rst
  7. 4
      pytest.ini
  8. 6
      setup.cfg
  9. 44
      setup.py

@ -0,0 +1,2 @@
build
dist

@ -0,0 +1,2 @@
wolframalpha
============

@ -0,0 +1,19 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import setuptools_scm
extensions = [
'sphinx.ext.autodoc',
]
# General information about the project.
project = 'wolframalpha'
copyright = '2015 Jason R. Coombs'
# The short X.Y version.
version = setuptools_scm.get_version(root='..', relative_to=__file__)
# The full version, including alpha/beta/rc tags.
release = version
master_doc = 'index'

@ -0,0 +1,8 @@
:tocdepth: 2
.. _changes:
History
*******
.. include:: ../CHANGES.txt

@ -0,0 +1,22 @@
Welcome to wolframalpha documentation!
========================================
.. toctree::
:maxdepth: 1
history
.. automodule:: wolframalpha
:members:
:undoc-members:
:show-inheritance:
Indices and tables
==================
* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`

@ -0,0 +1,4 @@
[pytest]
norecursedirs=*.egg .eggs dist build
addopts=--doctest-modules
doctest_optionflags=ALLOW_UNICODE ELLIPSIS

@ -0,0 +1,6 @@
[aliases]
release = sdist bdist_wheel build_sphinx upload upload_docs
test = pytest
[wheel]
universal = 1

@ -1,30 +1,52 @@
#!/usr/bin/env python
# Generated by jaraco.develop (https://bitbucket.org/jaraco/jaraco.develop)
# Generated by jaraco.develop 2.23
# https://pypi.python.org/pypi/jaraco.develop
import io
import sys
import setuptools
with open('README') as f:
long_description = f.read()
with io.open('README.txt', encoding='utf-8') as readme:
long_description = readme.read()
needs_pytest = {'pytest', 'test'}.intersection(sys.argv)
pytest_runner = ['pytest_runner'] if needs_pytest else []
needs_sphinx = {'release', 'build_sphinx', 'upload_docs'}.intersection(sys.argv)
sphinx = ['sphinx'] if needs_sphinx else []
needs_wheel = {'release', 'bdist_wheel'}.intersection(sys.argv)
wheel = ['wheel'] if needs_wheel else []
setup_params = dict(
name='wolframalpha',
use_hg_version=True,
description="Wolfram|Alpha 2.0 API client",
long_description = long_description,
use_scm_version=True,
author="Jason R. Coombs",
author_email="jaraco@jaraco.com",
description="Wolfram|Alpha 2.0 API client",
long_description=long_description,
url="https://bitbucket.org/jaraco/wolframalpha",
packages=setuptools.find_packages(),
zip_safe=False,
include_package_data=True,
install_requires=[
'six',
],
extras_require={
},
setup_requires=[
'hgtools',
'pytest-runner',
],
'setuptools_scm>=1.9',
] + pytest_runner + sphinx + wheel,
tests_require=[
'pytest',
'pytest>=2.8',
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
],
entry_points={
},
)
if __name__ == '__main__':
setuptools.setup(**setup_params)

Loading…
Cancel
Save