Skip to content

Commit ca08c41

Browse files
committed
specified pypi renderer
1 parent 1006d24 commit ca08c41

File tree

5 files changed

+38
-14
lines changed

5 files changed

+38
-14
lines changed

ADRpy/mtools4acdc.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
33

4-
"""mtools4acdc.py:
5-
Miscellaneous tools to support aircraft engineering calculations
4+
"""
5+
.. _mtools4acdc_module:
6+
7+
Miscellaneous Utilities
8+
-----------------------
69
7-
METHODS:
10+
This module contains miscellaneous tools to support aircraft
11+
engineering calculations.
812
9-
panelplot_with_shared_y, recastasnpfloatarray
1013
"""
1114

1215
__author__ = "Andras Sobester"

ADRpy/unitconversions.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
33

4-
"""unitconversions.py:
5-
A module containing conversion methods for units commonly used in
6-
aircraft engineering.
4+
"""
5+
.. _unitconversions_module:
6+
7+
Unit Conversions
8+
----------------
9+
10+
This module contains tools for converting between units commonly used in
11+
aircraft design.
12+
713
"""
814

915
__author__ = "Andras Sobester"

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@
5757
# built documents.
5858
#
5959
# The short X.Y version.
60-
version = '0.1.0'
60+
version = '0.1.1'
6161
# The full version, including alpha/beta/rc tags.
62-
release = '0.1.0'
62+
release = '0.1.1'
6363

6464
# The language for content autogenerated by Sphinx. Refer to documentation
6565
# for a list of supported languages.

docs/source/index.rst

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,35 @@ response to variations in ambient conditions.
1313
2. **Conceptual sizing methods** for fixed wing aircraft sizing (wing area and thrust/power
1414
requirements), given a set of constraints. These can be found in the :ref:`constraints_module`.
1515

16-
3. **Utilities**
16+
3. **Utilities**, including a module for :ref:`unitconversions_module` and a set of
17+
:ref:`mtools4acdc_module`.
1718

1819
Installing and running ADRpy
1920
----------------------------
2021

21-
For the code and installation instructions see `the ADRpy GitHub
22-
repository <https://github.com/sobester/ADRpy#aircraft-design-recipes-in-python>`_.
22+
On most systems you should be able to simply open an operating system terminal
23+
and at the command prompt type :code:`pip install ADRpy` or
24+
:code:`python -m pip install ADRpy` (:code:`pip` is a Python package:
25+
if it is not available on your system, download `get-pip.py <https://bootstrap.pypa.io/get-pip.py>`_
26+
and run it in Python by entering :code:`python get-pip.py` at the operating system prompt).
27+
28+
This is an open source project (released under a `GPLv3 <https://www.gnu.org/licenses/gpl-3.0.en.html>`_
29+
license) -- for the source code (and further installation instructions)
30+
see `the ADRpy GitHub repository <https://github.com/sobester/ADRpy#aircraft-design-recipes-in-python>`_.
2331

2432
ADRpy Modules
2533
-------------
2634

27-
.. automodule:: ADRpy.atmospheres
35+
.. automodule:: atmospheres
36+
:members:
37+
38+
.. automodule:: constraintanalysis
39+
:members:
40+
41+
.. automodule:: unitconversions
2842
:members:
2943

30-
.. automodule:: ADRpy.constraintanalysis
44+
.. automodule:: mtools4acdc
3145
:members:
3246

3347
* :ref:`genindex`

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
version=__version__,
2323
description='A Python library of aircraft conceptual design tools.',
2424
long_description=long_description,
25+
long_description_content_type='text/markdown',
2526
url='https://github.com/sobester/ADRpy',
2627
download_url='https://github.com/sobester/ADRpy/tarball/' + __version__,
2728
license='GPLv3',

0 commit comments

Comments
 (0)