-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
58 lines (53 loc) · 1.59 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
53
54
55
56
57
58
"""
Ask More Questions.
Author: Ron Nathaniel
"""
import setuptools
PACKAGE = 'askquestions'
VERSION = '0.4.0'
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open('requirements.txt') as f:
required = f.read().splitlines()
setuptools.setup(
name=PACKAGE,
version=VERSION,
author="ronnathaniel",
author_email="rnathaniel7@gmail.com",
short_description="StackOverflow in your Terminal.",
long_description=long_description,
long_description_content_type="text/markdown",
packages=['how'],
package_data={'how': ['*.pem']},
python_requires=">=3.6",
entry_points={
'console_scripts': ['how = how.__main__:run']
},
install_requires=required,
include_package_data=True,
url="https://github.com/ronnathaniel/how",
project_urls={
"Bug Tracker": "https://github.com/ronnathaniel/how/issues"
},
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords=[
'python',
'python3',
'how',
'howto',
'howdoi',
'stackoverflow',
],
)