-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
28 lines (26 loc) · 1.1 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
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name="orgformat",
version="2019.12.29.1",
description="Utility library for providing functions to generate and modify Org mode syntax elements like links, time-stamps, or date-stamps.",
license='GPLv3',
author="Karl Voit",
author_email="[email protected]",
url="https://github.com/novoid/orgformat",
download_url="https://github.com/novoid/orgformat/zipball/master",
keywords=["orgmode", "datestamps", "timestamps", "links"],
packages=find_packages(),
#install_requires=["pyreadline3", "clint"], # add dependencies if they are included in the code
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
]
)