forked from CarlLee/ENML_PY
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 896 Bytes
/
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
29
30
31
import os
from setuptools import setup
f = open(os.path.join(os.path.dirname(__file__), 'README.md'))
readme = f.read()
f.close()
test_requires = []
name='ENML2HTML'
setup(
name=name,
version='0.0.1',
description='This is a python library for converting ENML (Evernote Markup Language, http://dev.evernote.com/start/core/enml.php) to/from HTML.',
long_description=readme,
author='Carl Lee',
author_email='ljbha007@gmail.com',
url='https://github.com/CarlLee/ENML_PY/tree/master',
package_dir={name: ''},
py_modules=['{0}.__init__'.format(name), '{0}.test'.format(name)],
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
test_suite='test',
)