14 lines
441 B
Python
14 lines
441 B
Python
![]() |
from distutils.core import setup
|
||
|
|
||
|
setup(
|
||
|
name = 'PyOrgMode',
|
||
|
packages = ['PyOrgMode'], # this must be the same as the name above
|
||
|
version = '0.1',
|
||
|
description = 'Library to interact with org-mode from python',
|
||
|
author = 'Jonathan BISSON',
|
||
|
author_email = 'Jonathan.BISSON@bjonnh.net',
|
||
|
url = 'https://github.com/bjonnh/PyOrgMode', # use the URL to the github repo
|
||
|
keywords = ['org-mode'],
|
||
|
classifiers = [],
|
||
|
)
|