-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathsetup.py
52 lines (50 loc) · 1.39 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
from setuptools import setup
entry_points = {
'console_scripts': [
'whatportis=whatportis.cli:run',
]
}
readme = open('README.rst').read()
setup(
name="whatportis",
version="0.8.2",
url='http://github.com/ncrocfer/whatportis',
author='Nicolas Crocfer',
author_email='[email protected]',
description="A command to search port names and numbers",
long_description=readme,
packages=['whatportis'],
include_package_data=True,
install_requires=[
"simplejson==3.17.2",
"tinydb==4.4.0",
"requests==2.25.1",
"prettytable==2.1.0",
"click==8.0.1"
],
extras_require={
"dev": [
"pytest",
"tox",
"black"
],
"server": [
"flask==1.1.2"
]
},
entry_points=entry_points,
classifiers=(
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Natural Language :: English',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
),
)