-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 815 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
from distutils.core import setup
setup(name='notepadqq_api',
version='0.9',
description='Notepadqq API Layer for extensions',
author='Daniele Di Sarli',
author_email='danieleds0@gmail.com',
url='http://notepadqq.altervista.org/',
packages=['notepadqq_api'],
download_url='https://github.com/notepadqq/NotepadqqApi_Python/archive/v0.9.tar.gz',
classifiers=[
'Classifier: Development Status :: 4 - Beta'
'Classifier: Intended Audience :: Developers'
'Classifier: License :: OSI Approved :: MIT License'
'Classifier: Programming Language :: Python'
'Classifier: Topic :: Software Development :: Libraries'
'Classifier: Topic :: Software Development :: Libraries :: Python Modules'
]
)