-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (25 loc) · 775 Bytes
/
setup.py
File metadata and controls
30 lines (25 loc) · 775 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
from setuptools import setup
setup(
name="stackit",
version="0.1.7",
packages=['stackit'],
# dependencies
install_requires=[
'Py-StackExchange',
'html2text',
'Click',
],
# metadata for upload to PyPI
author="SB Hacks Crew",
author_email="lukas.schwab@gmail.com",
description="stackit sends smart StackOverflow queries from your command line",
license="MIT",
keywords="error stderr stack overflow stackoverflow stack exchange stackexchange",
url="https://github.com/lukasschwab/stackit", # project homepage
download_url="https://github.com/lukasschwab/stackit/tarball/0.1.7",
entry_points={
'console_scripts': [
'stackit=stackit.stackit_core:main'
]
}
)