forked from niedbalski/python-bugspots
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 902 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 902 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 setuptools import setup, find_packages
dependencies = [ "vcstools-latest" ]
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="bughotspots",
version="0.3",
packages=find_packages(),
install_requires=dependencies,
author="Punit Goswami",
description="A Python based implementation of the bug prediction algorithm proposed by Google",
keywords="bughotspot bug spots bug prediction",
long_description=long_description,
url='https://github.com/pntgoswami18/python-bugspots',
long_description_content_type="text/markdown",
include_package_data=True,
license="BSD",
entry_points={
'console_scripts' : [
'bughotspots = bughotspots:main'
]
},
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Operating System :: Unix ']
)