-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (36 loc) · 1.26 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
from setuptools import setup, find_packages
setup(
name="eco-code-analyzer",
version="0.3.1",
packages=find_packages(),
entry_points={
"console_scripts": [
"eco-code-analyzer=eco_code_analyzer.cli:main",
],
},
install_requires=[
"astroid",
"gitpython",
"matplotlib",
],
extras_require={
"dev": ["pytest", "flake8", "black"],
},
author="Moudather Chelbi",
author_email="moudather.chelbi@gmail.com",
description="A Python library that analyzes code for ecological impact and provides optimization suggestions",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/vinerya/eco-code-analyzer",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires='>=3.7',
keywords='code analysis, environmental impact, energy efficiency, eco-friendly coding',
)