forked from yasserglez/pyenscript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (25 loc) · 918 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (25 loc) · 918 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
25
26
27
28
29
30
# -*- coding: utf-8 -*-
import os
from setuptools import setup
src_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(src_dir, 'README.txt')) as f:
long_description = f.read()
setup(
name='PyENScript',
version='0.1.0',
description='A Python wrapper for the Evernote ENScript.exe executable',
long_description=long_description,
url='https://github.com/yglezfdez/pyenscript',
author='Yasser Gonzalez Fernandez',
author_email='contact@yglezfdez.com',
license='Apache License Version 2.0',
py_modules=['pyenscript'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
)