-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 688 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 688 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='gdbPy',
packages=find_packages(include=['gdbPy']),
version='0.1.2',
description='gdb scripts in Python',
long_description=long_description,
long_description_content_type="text/markdown",
author='Marco Balossini',
license='GPL',
url="https://github.com/MarcoBalossini/gdbPy",
keywords=["gdb", "debugging"],
classifiers= [
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
],
)