-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 851 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
setup(
name="code-contribution-analyzer",
version="1.0.0",
description="Analyze your coding contributions across GitHub, GitLab, and Bitbucket.",
author="Stephen Ombuya",
url="https://github.com/stephenombuya/Code-Contribution-Analyzer",
packages=find_packages(),
python_requires=">=3.11",
install_requires=[line.strip() for line in open("requirements.txt") if line.strip() and not line.startswith("#")],
entry_points={
"console_scripts": [
"cca=src.cli.cli_runner:cli",
]
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)