-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 1015 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 1015 Bytes
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
from distutils.core import setup
import os
import moduledependency
currentFileDirectory = os.path.dirname(__file__)
with open(os.path.join(currentFileDirectory, "README"), "r") as f:
readme = f.read()
setup(
name="moduledependency",
version=moduledependency.VERSION,
description="Tool used to search for and visualise dependencies between packages/modules in Python projects",
long_description=readme,
author="Donald Whyte",
author_email="donaldwhyte0@gmail.com",
url="http://code.google.com/p/module-dependency",
classifiers=[
"Development Status :: 3 - Alpha Development Status"
"Intended Audience :: Developers",
"Programming Language :: Python 3",
"Programming Language :: Python 3.2",
"Programming Language :: Python 3.3",
],
keywords="dependency module searcher project automatic code analysis generator",
license="MIT",
packages=("moduledependency","moduledependency.outputters"),
scripts=('module-dependency.py',),
data_files=[ (".", ["LICENCE"]) ]
)