-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
31 lines (28 loc) · 871 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
from setuptools import setup
packages = ['memory_utils']
required_modules = [
"colorama>=0.3.2",
"psutil>=2.1.1",
"six"
]
setup(name='memory_utils',
version='1.0.2',
description='Tools to help with memory leaks',
url='http://github.com/jtushman/memory_utils',
author='Jonathan Tushman',
author_email='jonathan@zefr.com',
install_requires=required_modules,
license='MIT',
packages=packages,
zip_safe=False,
tests_require=['nose'],
test_suite='nose.collector',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
]
)