-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 763 Bytes
/
setup.py
File metadata and controls
33 lines (30 loc) · 763 Bytes
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
#!/usr/bin/env python
from setuptools import setup
with open("README.md") as f:
long_description = f.read()
setup(
name="click-aliases",
version="1.0.5",
description="Enable aliases for Click",
long_description=long_description,
long_description_content_type="text/markdown",
author="Robbin Bonthond",
author_email="robbin@bonthond.com",
url="https://github.com/click-contrib/click-aliases",
license="MIT",
packages=["click_aliases"],
install_requires=[
"click",
],
extras_require={
"dev": [
"flake8",
"flake8-import-order",
"tox-travis",
"pytest",
"pytest-cov",
"coveralls",
"wheel",
]
},
)