-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (35 loc) · 1.26 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
"""
A setuptools based setup module.
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
from os import path
import setuptools
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setuptools.setup(
name='tkshapes',
version='0.0.4',
description='Draw and interact with shapes on the Tkinter canvas',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/bentlema/tkshapes',
author='Mark Bentley',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords='tkinter',
packages=setuptools.find_packages(where="src", exclude=['contrib', 'docs', 'tests']),
package_dir={"": "src"},
project_urls={
'Bug Reports': 'https://github.com/bentlema/tkshapes/issues',
'Source': 'https://github.com/bentlema/tkshapes/',
},
)