-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (38 loc) · 1.07 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
from setuptools import setup, find_packages
NAME = 'cou'
VERSION = '0.1.0'
DESCRIPTION = ('CLI utility that counts lines of code within files '
'and analyzes directories containing code')
LICENCE = 'MIT'
URL = 'https://github.com/zluuba/cou'
AUTHOR = 'Luybov Nikitina'
AUTHOR_EMAIL = '[email protected]'
PYTHON_REQUIRES = '>=3.11'
ENTRY_POINTS = {
'console_scripts': ['cou=cou.cli.app:main'],
}
CLASSIFIERS = [
'Environment :: Console',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Operating System :: Unix',
'Topic :: Utilities',
]
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
license=LICENCE,
url=URL,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
packages=find_packages(),
include_package_data=True,
entry_points=ENTRY_POINTS,
python_requires=PYTHON_REQUIRES,
classifiers=CLASSIFIERS,
)