forked from MathieuTurcotte/msparser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (27 loc) · 930 Bytes
/
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
# Copyright (c) 2011 Mathieu Turcotte
# Licensed under the MIT license.
from distutils.core import setup
def read(path):
return open(path).read()
setup(
name="msparser",
py_modules=["msparser"],
version="1.4",
license="MIT",
description="Valgrind massif.out parser",
long_description=read("README.rst"),
author="Mathieu Turcotte",
author_email="[email protected]",
url="https://github.com/MathieuTurcotte/msparser",
keywords=["valgrind", "massif", "parser"],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: General",
]
)