forked from jlachowski/clonedigger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (37 loc) · 1.29 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
36
37
38
39
40
41
42
43
44
# -*- coding: utf-8 -*-
"""
This module contains the tool of collective.recipe.buildbot
"""
from ez_setup import use_setuptools
use_setuptools()
import os
from setuptools import setup, find_packages
def read(*rnames):
return open(os.path.join(os.getcwd(), *rnames)).read()
version = '1.0.2-beta'
long_description = read(os.path.join(os.getcwd(), 'clonedigger', 'README.txt'))
entry_points = {"console_scripts": [
"clonedigger = clonedigger.clonedigger:main"
],
}
setup(name='clonedigger',
version=version,
description=("Clone Digger aimed to detect similar code in Python "
"and Java programs."),
long_description=long_description,
# Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='buildout buildbot',
author='Peter Bulychev',
author_email='[email protected]',
url='http://clonedigger.sourceforge.net',
license='GPL',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=['setuptools'],
entry_points=entry_points,
)