-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (37 loc) · 1.14 KB
/
Copy pathsetup.py
File metadata and controls
38 lines (37 loc) · 1.14 KB
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 setuptools import setup, find_packages
setup(
name='code-stats',
version='0.1.3',
description='''A command line tool to generate code statistics for a given directory.
These statistics include
1. Total Lines of Code.
2. Percentage wise break up of different languages used.''',
author='Abhinav Shaw',
author_email='abhinav.shaw1993@gmail.com',
packages=find_packages(),
install_requires=[
'click>=7.0,<8.0',
'pathlib>=1.0.1,<2.0',
'tabulate>=0.8.6,<1.0',
'pyYAML>=5.1,<6.0',
],
keywords = ['Code statistics', 'lines of code', 'loc'],
setup_requires=[
"pytest-runner",
],
test_requires=[
'pytest',
],
entry_points={
'console_scripts' : ['codestats=code_stats.cli:generate_code_statistics']
},
url="https://github.com/abhinavshaw1993/code-stats",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux"
],
package_data={'code_stats': ['data/*', 'tests/testing_data/*']},
include_package_data=True,
zip_safe=False,
setup_cfg=True
)