-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
44 lines (37 loc) · 1.17 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.8'
long_description = read('README.md')
entry_points = {
"console_scripts": ["clonedigger = clonedigger.clonedigger:main"],
}
setup(
name='clonedigger-jl',
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='Jaroslaw Lachowski',
author_email='jalachowski@gmail.com',
url='https://github.com/jlachowski/clonedigger',
license='GPL',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=['future', 'setuptools'],
entry_points=entry_points,
)