-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
36 lines (33 loc) · 878 Bytes
/
setup.cfg
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
[metadata]
name = pipfile-cli
description = Command line interface around Pipfile operations
url = https://github.com/sarugaku/pipfile-cli
author = Tzu-ping Chung
author_email = [email protected]
long_description = file: README.rst
license = ISC License
keywords =
pipenv
pipfile
classifier =
Development Status :: 2 - Pre-Alpha
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: ISC License (ISCL)
Operating System :: OS Independent
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Topic :: Software Development :: Libraries :: Python Modules
[options]
zip_safe = false
python_requires = >= '3.6'
install_requires =
click
requirementslib
six
toml
[options.entry_points]
console_scripts =
pipfile=pipfile_cli.__main__:cli
[bdist_wheel]
universal = 1