-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 698 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 698 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
from setuptools import setup, find_packages
dependencies = [ "vcstools-latest" ]
setup(
name="bug-spots",
version="0.3",
packages=find_packages(),
install_requires=dependencies,
author="Jorge Niedbalski R.",
author_email="jnr@pyrosome.org",
description="A Python based implementation of the bug prediction algorithm proposed by Google",
keywords="bugspot bug spots bug prediction",
include_package_data=True,
license="BSD",
entry_points={
'console_scripts' : [
'bugspots = bugspots:main'
]
},
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Operating System :: Unix ']
)