-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (31 loc) · 1.01 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
from setuptools import setup
def readme():
with open("README.md") as f:
return f.read()
setup(
name="spaghetti-graph",
version="1.0.1",
description="Graph function level Python dependencies to understand and fix spaghetti code",
long_description=readme(),
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.5" "Intended Audience :: Developers",
"Topic :: Software Development :: Debuggers",
],
keywords="dependency graphs",
url="https://github.com/nferrara100/spaghetti",
author="Nicholas Ferrara",
author_email="nferrara100@gmail.com",
license="MIT",
packages=["spaghetti"],
install_requires=["networkx", "matplotlib"],
entry_points={
"console_scripts": [
"spaghetti=spaghetti.command_line:main",
"spaghetti-graph=spaghetti.command_line:main",
],
},
test_suite="nose.collector",
tests_require=["nose", "nose-cover3"],
zip_safe=False,
)