Skip to content

Commit

Permalink
Merge pull request #3 from CourtBouillon/packaging
Browse files Browse the repository at this point in the history
Packaging
  • Loading branch information
grewn0uille authored Dec 6, 2020
2 parents d48c213 + 8d661be commit df71280
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/first_steps.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The easiest way to use pydyf is to install it in a Python `virtual
environment`_. When your virtual environment is activated, you can then install
pydyf with pip_::

pip install git+https://github.com/CourtBouillon/pydyf.git
pip install pydyf

.. _virtual environment: https://packaging.python.org/guides/installing-using-pip-and-virtual-environments/
.. _pip: https://pip.pypa.io/
Expand Down
15 changes: 13 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@ author = 'CourtBouillon'
author-email = 'contact@courtbouillon.org'
maintainer = 'CourtBouillon'
maintainer-email = 'contact@courtbouillon.org'
requires-python = '>=3.5'
home-page = 'https://www.courtbouillon.org/pydyf'
requires-python = '>=3.6'
keywords = 'pdf generator'
description-file = 'README.rst'
classifiers = [
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
Expand All @@ -18,10 +20,10 @@ classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
]
Expand All @@ -30,6 +32,15 @@ classifiers = [
doc = ['sphinx', 'sphinx_rtd_theme']
test = ['pytest', 'pytest-cov', 'pytest-flake8', 'pytest-isort', 'coverage[toml]', 'pillow']

[tool.flit.metadata.urls]
Documentation = 'https://doc.courtbouillon.org/pydyf/'
Code = 'https://github.com/CourtBouillon/pydyf'
Issues = 'https://github.com/CourtBouillon/pydyf/issues'
Donation = 'https://opencollective.com/courtbouillon'

[tool.flit.sdist]
exclude = ['.*']

[tool.pytest.ini_options]
addopts = '--isort --flake8 --cov'

Expand Down

0 comments on commit df71280

Please sign in to comment.