Skip to content

Commit 9170a89

Browse files
author
Owen Klan
committed
Tweak setup.py before creating 0.5.1 release
1 parent 92a639b commit 9170a89

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

setup.py

+21-21
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
from distutils.core import setup
22
setup(
3-
name = 'texttab', # How you named your package folder (MyLib)
4-
packages = ['texttab'], # Chose the same as "name"
5-
version = '0.5.0', # Start with a small number and increase it with every change you make
6-
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
7-
description = 'Create ASCII tables that are flexible. Colours, various border styles and custom column formatters are some of the features.', # Give a short description about your library
8-
author = 'Owen Klan', # Type in your name
9-
author_email = 'owen.j.klan@gmail.com', # Type in your E-Mail
10-
url = 'https://github.com/owenjklan/texttab', # Provide either the link to your github or to your website
11-
download_url = 'https://github.com/owenjklan/texttab/archive/refs/tags/v0.5.0.tar.gz', # I explain this later on
12-
keywords = ['command-line', 'ascii', 'tables', 'formatters', 'extensible'], # Keywords that define your package best
13-
install_requires=[ # I get to this in a second
14-
],
15-
classifiers=[
16-
'Development Status :: 3 - Beta', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
17-
'Intended Audience :: Developers', # Define that your audience are developers
18-
'Topic :: Software Development :: Build Tools',
19-
'License :: OSI Approved :: MIT License', # Again, pick a license
20-
'Programming Language :: Python :: 3', #Specify which pyhton versions that you want to support
21-
# Because we heavily use f-strings, a python 3.6 feature
22-
'Programming Language :: Python :: 3.6',
23-
],
3+
name='texttab',
4+
packages=['texttab'],
5+
version='0.5.1',
6+
license='MIT',
7+
description='Create ASCII tables that are flexible. Colours, various border styles and custom column formatters are some of the features.', # Give a short description about your library
8+
author='Owen Klan',
9+
author_email='owen.j.klan@gmail.com',
10+
url='https://github.com/owenjklan/texttab',
11+
download_url='https://github.com/owenjklan/texttab/archive/refs/tags/v0.5.1.tar.gz',
12+
keywords=['command-line', 'ascii', 'tables', 'formatters', 'extensible'],
13+
install_requires=[
14+
],
15+
classifiers=[
16+
'Development Status :: 4 - Beta',
17+
'Intended Audience :: Developers',
18+
'Topic :: Software Development :: Build Tools',
19+
'License :: OSI Approved :: MIT License',
20+
'Programming Language :: Python :: 3',
21+
# Because we heavily use f-strings, a python 3.6 feature
22+
'Programming Language :: Python :: 3.6',
23+
],
2424
)

0 commit comments

Comments
 (0)