Skip to content

Commit 2e51f5b

Browse files
authored
Merge pull request #3 from erwanp/develop
0.2.1: reliable deployment on Pypi
2 parents c37342d + 7d817f3 commit 2e51f5b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Convert a Python expression in a LaTeX formula
2222

2323
Github::
2424

25-
https://github.com/erwanp/pytexit)
25+
https://github.com/erwanp/pytexit
2626

2727
This module isn't unit aware and isn't designed to perform calculations. It is
2828
a mere translator from Python expressions into LaTeX syntax. The idea behind it

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from __future__ import absolute_import
2-
from setuptools import setup
2+
from setuptools import setup, find_packages
33
import os
44
import codecs
55

@@ -8,14 +8,14 @@
88
long_description = codecs.open('README.rst', encoding="utf-8").read()
99

1010
setup(name='pytexit',
11-
version='0.1.11',
11+
version='0.2.1',
1212
description='Convert a Python expression in a LaTeX formula',
1313
long_description=long_description,
1414
url='https://github.com/erwanp/pytexit',
1515
author='Erwan Pannier',
1616
author_email='erwan.pannier@gmail.com',
1717
license='CeCILL-2.1',
18-
packages=['pytexit'],
18+
packages=find_packages(),
1919
platforms="any",
2020
classifiers=[
2121
'Development Status :: 4 - Beta',

0 commit comments

Comments
 (0)