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 55"""
66from setuptools import setup
77
8- VERSION = '0.1.5'
98DESCRIPTION = "python-tableformatter - Tabular data formatter allowing printing from both arbitrary tuples of strings or object inspection"
109LONG_DESCRIPTION = """tableformatter is a tabular data formatter allowing printing from both arbitrary tuples of strings or object inspection.
1110It converts your data into a string form suitable for pretty-printing as a table. The goal is to make it quick and easy
4342 ]
4443}
4544
45+ PACKAGE_DATA = {
46+ '' : ['py.typed' ]
47+ }
48+
4649setup (
4750 name = "tableformatter" ,
48- version = VERSION ,
51+ use_scm_version = True ,
4952 description = DESCRIPTION ,
5053 long_description = LONG_DESCRIPTION ,
5154 classifiers = CLASSIFIERS ,
5962 python_requires = '>=3.4' ,
6063 install_requires = INSTALL_REQUIRES ,
6164 extras_require = EXTRAS_REQUIRE ,
65+ package_data = PACKAGE_DATA ,
6266)
You can’t perform that action at this time.
0 commit comments