-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
68 lines (66 loc) · 2.04 KB
/
setup.py
File metadata and controls
68 lines (66 loc) · 2.04 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
from distutils.core import setup
import os
from setuptools import find_packages
# User-friendly description from README.md
current_directory = os.path.dirname(os.path.abspath(__file__))
try:
with open(os.path.join(current_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
except Exception:
long_description = ''
setup(
# Name of the package
name='codel',
# Packages to include into the distribution
packages=find_packages('.'),
# Start with a small number and increase it with
# every change you make https://semver.org
version='1.1.1',
# Chose a license from here: https: //
# help.github.com / articles / licensing - a -
# repository. For example: MIT
license='MIT',
# Short description of your library
description='Count lines of your code tastefully.',
# Long description of your library
long_description=long_description,
long_description_content_type='text/markdown',
# Your name
author='voilalex',
# Your email
author_email='ilya.vouk@gmail.com',
# Either the link to your github or to your website
url='https://github.com/VoIlAlex/codel',
# Link from which the project can be downloaded
download_url='https://github.com/VoIlAlex/codel/archive/v1.1.1.tag.gz',
# List of keywords
keywords=[
'cli',
'code',
'lines',
'performance',
'utility'
],
# List of packages to install with this one
install_requires=[
'colored',
'gitignore_parser',
'tqdm'
],
# https://pypi.org/classifiers/
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'Topic :: Utilities',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
entry_points="""
[console_scripts]
codel = codel.cli:cli
""",
zip_safe=False
)