Skip to content

Commit

Permalink
Merge pull request #2 from chdemko/master
Browse files Browse the repository at this point in the history
Using sphinx.setup_command.BuildDoc features
  • Loading branch information
chdemko authored Feb 4, 2018
2 parents 0f5d952 + 39012ee commit c477ae2
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 11 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,17 @@
[![Build Status](https://img.shields.io/travis/thegalactic/py-galactic/master.svg)](https://travis-ci.org/thegalactic/py-galactic/branches)
[![Coveralls](https://img.shields.io/coveralls/github/thegalactic/py-galactic/master.svg)](https://coveralls.io/github/thegalactic/py-galactic?branch=master)
[![Scrutinizer](https://img.shields.io/scrutinizer/g/thegalactic/py-galactic.svg)](https://scrutinizer-ci.com/g/thegalactic/py-galactic/)
[![Docs](https://img.shields.io/readthedocs/py-galactic.svg)](https://readthedocs.org/projects/py-galactic/)
[![Docs](https://img.shields.io/readthedocs/py-galactic.svg)](http://py-galactic.readthedocs.io/)
[![PyPI version](https://img.shields.io/pypi/v/py-galactic.svg)](https://pypi.org/project/py-galactic/)
[![PyPI format](https://img.shields.io/pypi/format/py-galactic.svg)](https://pypi.org/project/py-galactic/)
[![License](https://img.shields.io/pypi/l/py-galactic.svg)](https://raw.githubusercontent.com/thegalactic/py-galactic/master/LICENSE)
[![Downloads](https://img.shields.io/pypi/dm/py-galactic.svg)](https://pypi.org/project/py-galactic/)
[![Python version](https://img.shields.io/pypi/pyversions/py-galactic.svg)](https://pypi.org/project/py-galactic/)
[![Development Status](https://img.shields.io/pypi/status/py-galactic.svg)](https://pypi.org/project/py-galactic/)
[![Contributors](https://img.shields.io/badge/community-contributors-ff69b4.svg)](https://github.com/thegalactic/py-galactic/graphs/contributors/)
[![Commits](https://img.shields.io/badge/community-commits-ff69b4.svg)](https://github.com/thegalactic/py-galactic/graphs/commit-activity/)
[![Forks](https://img.shields.io/badge/community-forks-ff69b4.svg)](https://github.com/thegalactic/py-galactic/network/members/)


*py-galactic* is a package developed in Python for studying [Formal Concept Analysis](https://en.wikipedia.org/wiki/Formal_concept_analysis).

13 changes: 8 additions & 5 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,18 +83,21 @@
master_doc = 'index'

# General information about the project.
project = 'py-galactic'
copyright = '2018, The Galactic Organization'
author = 'The Galactic Organization'
# Taken from setup.py
# project = ''
# copyright = ''
author = ''

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '0.1'
# Taken from setup.py
#version = ''
# The full version, including alpha/beta/rc tags.
release = '0.1.0a1'
# Taken from setup.py
#release = ''

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
15 changes: 10 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@
version = '0.0.1'
release = '0.0.1'
name = 'py-galactic'
author = 'The Galactic Organization'
author_email='[email protected]'
copyright = '2018, The Galactic Organization'

setup(
name=name,

Expand All @@ -48,7 +52,8 @@
'build_sphinx': {
'project': ('setup.py', name),
'version': ('setup.py', version),
'release': ('setup.py', release)
'release': ('setup.py', release),
'copyright': ('setup.py', copyright)
}
},

Expand All @@ -63,12 +68,12 @@
download_url='https://github.com/thegalactic/py-galactic/archive/master.zip',

# Author details
author='The Galactic Organization',
author_email='[email protected]',
author=author,
author_email=author_email,

# Maintainer details
maintainer='The Galactic Organization',
maintainer_email='[email protected]',
maintainer=author,
maintainer_email=author_email,

# Choose your license
license='BSD-3-Clause',
Expand Down

0 comments on commit c477ae2

Please sign in to comment.