-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 805 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from os import path
from io import open
from setuptools import setup, find_packages
setup(
name = 'orgpy',
version = '0.10.0',
author = 'Christopher G. Watson',
author_email = 'cwa135@alum.mit.edu',
description = 'Python package to get important information from org-mode files',
url = 'https://github.com/cwatson/orgpy',
classifiers = [
'Development Status :: 1 - Planning',
'Programming Language :: Python :: 3.6',
'Intended Audience :: End Users/Desktop',
'Operating System :: POSIX :: Linux',
],
license = 'Apache 2.0',
packages = find_packages(),
keywords = ['orgmode'],
install_requires = ['setuptools', 'argparse', 'colorama', 'copy', 'datetime', 'io', 'os', 're', 'shutil', 'sys'],
python_requires = '>=3.6',
)