File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change
1
+ # PEP 561
Original file line number Diff line number Diff line change 5
5
"""
6
6
from setuptools import setup
7
7
8
- VERSION = '0.1.5'
9
8
DESCRIPTION = "python-tableformatter - Tabular data formatter allowing printing from both arbitrary tuples of strings or object inspection"
10
9
LONG_DESCRIPTION = """tableformatter is a tabular data formatter allowing printing from both arbitrary tuples of strings or object inspection.
11
10
It converts your data into a string form suitable for pretty-printing as a table. The goal is to make it quick and easy
43
42
]
44
43
}
45
44
45
+ PACKAGE_DATA = {
46
+ '' : ['py.typed' ]
47
+ }
48
+
46
49
setup (
47
50
name = "tableformatter" ,
48
- version = VERSION ,
51
+ use_scm_version = True ,
49
52
description = DESCRIPTION ,
50
53
long_description = LONG_DESCRIPTION ,
51
54
classifiers = CLASSIFIERS ,
59
62
python_requires = '>=3.4' ,
60
63
install_requires = INSTALL_REQUIRES ,
61
64
extras_require = EXTRAS_REQUIRE ,
65
+ package_data = PACKAGE_DATA ,
62
66
)
You can’t perform that action at this time.
0 commit comments