-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (33 loc) · 1.04 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
import io
import popthings
from setuptools import setup
with io.open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="popthings",
version=popthings.__version__,
author="Alexandre Chabot-Leclerc",
author_email="[email protected]",
description=(
"iOS and command line tool to import a TaskPaper template"
" with placeholders into Things by Cultured Code"
),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/achabotl/popthings",
scripts=["popthings.py"],
entry_points={
"console_scripts": [
"popthings = popthings:cli",
],
},
classifiers=(
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: iOS",
"Operating System :: MacOS :: MacOS X",
"Natural Language :: English",
),
)