You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
441 B
14 lines
441 B
6 years ago
|
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 = [],
|
||
|
)
|