-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
25 lines (24 loc) · 855 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
from setuptools import setup, find_packages
setup(
name = 'pipspect',
version = '0.3',
entry_points={
'console_scripts': ['pipspect=src.pipspect:main']
},
packages = find_packages(),
license = "MIT",
description = 'A small CLI tool to inspect your modules, especially those installed via pip',
author = 'Yong Cheng Toh',
author_email = '[email protected]',
url = 'https://github.com/tohyongcheng/pipspect',
keywords = ['module', 'inspect', 'pip', 'classes', 'builtin', 'functions', 'methods'], # arbitrary keywords
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development :: Testing',
'Programming Language :: Python :: 2',
],
)