This repository was archived by the owner on Nov 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (40 loc) · 1.4 KB
/
setup.py
File metadata and controls
44 lines (40 loc) · 1.4 KB
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
#!/usr/bin/env python3
#
# Copyright (c) Facebook, Inc. and its affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
from setuptools import find_packages, setup
with open("README.md") as f:
readme = f.read()
with open("requirements.txt") as f:
requires = f.read().strip().splitlines()
setup(
name="memory_analyzer",
description="Python 3 memory analyzer for running processes",
long_description=readme,
long_description_content_type="text/markdown",
version="0.1.2",
author="Lisa Roach, Facebook",
author_email="lisroach@fb.com",
url="https://github.com/facebookincubator/memory-analyzer",
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
license="MIT",
packages=find_packages(),
package_data={"memory_analyzer": ["templates/*.template"]},
test_suite="memory_analyzer.tests",
python_requires=">=3.6",
setup_requires=["setuptools"],
install_requires=requires,
entry_points={
"console_scripts": ["memory_analyzer = memory_analyzer.memory_analyzer:cli"]
},
)