-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (36 loc) · 1.05 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
from distutils.core import setup
import os
# This attempts to provide a safe reStructuredTxt for PyPI based on README.md
long_description = 'Static Analysis for Software Clone Detection'
if os.path.exists('README.rst'):
long_description = open('README.rst').read()
setup(
name='orphanblack',
packages=['orphanblack'],
install_requires=[
"Jinja2",
"tabulate",
"click"
], # TODO: versioning info?
version='0.2.0',
description='Static Analysis for Software Clone Detection',
long_description=long_description,
author='Will Oursler',
author_email='[email protected]',
url='https://github.com/Zomega/orphanblack',
download_url='https://github.com/Zomega/orphanblack/tarball/0.2.0',
keywords=['testing', 'clone', 'static analysis', 'clonedigger', 'buildbot'],
classifiers=[],
package_dir={'orphanblack': 'orphanblack'},
package_data={
'orphanblack': [
'templates/*.html',
'default_manifests/*'
]
},
entry_points={
'console_scripts': [
'orphanblack = orphanblack.cli:orphanblack_cli',
]
}
)