-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (30 loc) · 1014 Bytes
/
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
import pathlib
from setuptools import setup
from pyenvcomp import __version__
with open('README.md', encoding='utf-8') as readme_file:
long_description = readme_file.read()
# This call to setup() does all the work
setup(
name="pyenvcomp",
version=__version__,
description="Detailed display of the difference between two given python virtual environments.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/KoustavCode/pyenvcomp.git",
author="Koustav Chanda",
author_email="koustavtocode@gmail.com",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
],
packages=["pyenvcomp"],
include_package_data=True,
install_requires=['tableformatter','colored','colorama'],
entry_points={
"console_scripts": [
"compare=pyenvcomp.main:main",
]
},
)