-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·47 lines (44 loc) · 1.52 KB
/
setup.py
File metadata and controls
executable file
·47 lines (44 loc) · 1.52 KB
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
#!/usr/bin/env python3
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="redbot",
version="0.0.1",
author="Fabrice Quenneville",
author_email="fab@fabq.ca",
url="https://github.com/fabquenneville/redbot",
download_url="https://pypi.python.org/pypi/redbot",
project_urls={
"Bug Tracker": "https://github.com/fabquenneville/redbot/issues",
"Documentation": "https://fabquenneville.github.io/redbot/",
"Source Code": "https://github.com/fabquenneville/redbot",
},
description="redbot is a Python command line tool to take some actions on reddit automatically.",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
classifiers=[
"Topic :: Communications :: Video :: Conversion",
"Development Status :: 1 - Planning",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Environment :: Console",
],
entry_points = {
'console_scripts': ['redbot=redbot.redbot:main'],
},
keywords=[
"social", "reddit", "automatic"
],
install_requires=[
"configparser", "praw", "sqlite3"
],
license='GPL-3.0',
python_requires='>=3.6',
test_suite='nose.collector',
tests_require=['nose'],
zip_safe=True,
)