File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Convert a Python expression in a LaTeX formula
22
22
23
23
Github::
24
24
25
- https://github.com/erwanp/pytexit)
25
+ https://github.com/erwanp/pytexit
26
26
27
27
This module isn't unit aware and isn't designed to perform calculations. It is
28
28
a mere translator from Python expressions into LaTeX syntax. The idea behind it
Original file line number Diff line number Diff line change 1
1
from __future__ import absolute_import
2
- from setuptools import setup
2
+ from setuptools import setup , find_packages
3
3
import os
4
4
import codecs
5
5
8
8
long_description = codecs .open ('README.rst' , encoding = "utf-8" ).read ()
9
9
10
10
setup (name = 'pytexit' ,
11
- version = '0.1.11 ' ,
11
+ version = '0.2.1 ' ,
12
12
description = 'Convert a Python expression in a LaTeX formula' ,
13
13
long_description = long_description ,
14
14
url = 'https://github.com/erwanp/pytexit' ,
15
15
author = 'Erwan Pannier' ,
16
16
author_email = 'erwan.pannier@gmail.com' ,
17
17
license = 'CeCILL-2.1' ,
18
- packages = [ 'pytexit' ] ,
18
+ packages = find_packages () ,
19
19
platforms = "any" ,
20
20
classifiers = [
21
21
'Development Status :: 4 - Beta' ,
You can’t perform that action at this time.
0 commit comments