-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
47 lines (44 loc) · 1.52 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
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='gatherup',
version='0.0.4',
author="Neil Stoker",
author_email="[email protected]",
description='Helps you post essential Python config details to GitHub or Discourse, all beautifully formatted',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/nmstoker/gatherup",
install_requires = [
"click>7.0,<8.0",
"questionary>1.5.2,<2.0",
"rich>7.1,<9.0",
"confuse>1.2,<1.4",
"importlib_resources ; python_version<'3.7'"
],
extras_require = {
"dev": [
"pytest>3.7",
],
},
py_modules=["gatherup"],
packages=find_packages("."),
include_package_data=True,
entry_points={"console_scripts": ["gatherup=gatherup.__main__:gatherup"]},
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development",
],
)