-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
46 lines (41 loc) · 1.31 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from setuptools import setup, find_packages
def get_long_description(path):
"""Opens and fetches text of long descrition file."""
with open(path, 'r') as f:
text = f.read()
return text
attrs = dict(
name='tkterminal',
version='0.1.0',
packages=find_packages(),
long_description=get_long_description('README.md'),
description='Terminal widget for Tkinter library.',
long_description_content_type='text/markdown',
author='Saad Mairaj',
author_email='[email protected]',
url='https://github.com/Saadmairaj/tkterminal',
license='Apache',
keywords=[
'tkinter',
'terminal',
'subprocess',
'tkinter-widget',
'shell',
'bash/sh',
'bash',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Libraries :: Python Modules',
],
project_urls={
'Documentation': 'https://github.com/Saadmairaj/tkterminal#documentation',
'Bug Report': 'https://github.com/Saadmairaj/tkterminal/issues',
},
include_package_data_info=True,
)
setup(**attrs)