forked from EpocDotFr/todotxtio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (24 loc) · 1.01 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
from setuptools import setup
import todotxtio
setup(
name='todotxtio',
version=todotxtio.__version__,
description='A simple Python module to parse, manipulate and write Todo.txt data',
long_description='Everything you need to know is located `here <https://epocdotfr.github.io/todotxtio/>`_.',
url='https://github.com/EpocDotFr/todotxtio',
author='Maxime "Epoc" G.',
author_email='[email protected]',
license='DBAD',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent'
],
keywords='todotxt todo.txt file parse parser read reader',
py_modules=['todotxtio'],
download_url='https://github.com/EpocDotFr/todotxtio/archive/todotxtio-{version}.tar.gz'.format(version=todotxtio.__version__)
)