Update project skeleton

This commit is contained in:
Jason R. Coombs 2015-11-24 20:10:37 -05:00
parent 5c3f935a84
commit c848015a89
9 changed files with 101 additions and 5 deletions

2
.hgignore Normal file
View File

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

0
CHANGES.txt Normal file
View File

2
README.txt Normal file
View File

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

19
docs/conf.py Normal file
View File

@ -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'

8
docs/history.rst Normal file
View File

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

22
docs/index.rst Normal file
View File

@ -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`

4
pytest.ini Normal file
View File

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

6
setup.cfg Normal file
View File

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

View File

@ -1,18 +1,51 @@
#!/usr/bin/env python #!/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 import setuptools
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( setup_params = dict(
name='wolframalpha', name='wolframalpha',
use_hg_version=True, use_scm_version=True,
author="Jason R. Coombs", author="Jason R. Coombs",
author_email="jaraco@jaraco.com", author_email="jaraco@jaraco.com",
description="wolframalpha",
long_description=long_description,
url="https://bitbucket.org/jaraco/wolframalpha", url="https://bitbucket.org/jaraco/wolframalpha",
packages=setuptools.find_packages(), packages=setuptools.find_packages(),
zip_safe=False, include_package_data=True,
setup_requires=[ install_requires=[
'hgtools',
], ],
extras_require={
},
setup_requires=[
'setuptools_scm>=1.9',
] + pytest_runner + sphinx + wheel,
tests_require=[
'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__': if __name__ == '__main__':
setuptools.setup(**setup_params) setuptools.setup(**setup_params)