forked from devjones/PyEtherpadLite
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
27 lines (25 loc) · 961 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md') as f:
long_description = f.read()
setup(
name='pyetherpadlite',
version='1.2',
description='Python bindings for Etherpad\'s HTTP API. (https://github.com/ether/etherpad-lite)',
long_description=long_description,
long_description_content_type='text/markdown',
license="Apache Software License 2.0",
author='alienmaster, devjones',
author_email='[email protected]',
url='https://github.com/Alienmaster/PyEtherpadLite',
project_urls={
'Bug Tracker': 'https://github.com/Alienmaster/PyEtherpadLite/issues',
'Source Code': 'https://github.com/Alienmaster/PyEtherpadLite',
},
packages=find_packages('src'),
package_dir={'': 'src'},
options={'bdist_wheel': {'universal': True}},
zip_safe=True, # This package can safely be installed from a zip file
platforms='any',
)