-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
46 lines (43 loc) · 1.16 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
45
46
from distutils.core import setup
from setuptools import find_packages
with open('README.rst') as readme_file:
readme = readme_file.read()
setup(
name='lcom',
packages=find_packages(exclude=['tests']),
version='0.1.0',
description='Lack of cohesion of methods metric',
long_description=readme,
author='Michal Wachowski',
author_email='[email protected]',
url='https://github.com/potfur/lcom',
download_url='https://github.com/potfur/lcom/archive/0.1.0.tar.gz',
keywords=[
'cohesion',
'code metrics',
'code quality',
'lcom',
'lcom4'
],
install_requires=[
'click',
'terminaltables'
],
test_suite='tests',
tests_require=[
'pytest',
'mock',
'flake8',
],
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
],
entry_points={
'console_scripts': ['lcom=src.command:cmd'],
}
)