Skip to content

Commit c9de102

Browse files
committed
Update setup.py
1 parent 1d932eb commit c9de102

File tree

4 files changed

+28
-7
lines changed

4 files changed

+28
-7
lines changed

CHANGES.txt

+2
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
v0.8.1, 7 Feb 2015 -- Rewritten for asyncio/aiosc.
2+
13
v0.1dev, 1 Jan 2013 -- Initial release to pypi

MANIFEST.in

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
include LICENSE
2+
include README.rst
3+
include CHANGES.txt
4+
include examples/*.py

README README.rst

File renamed without changes.

setup.py

+22-7
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,30 @@
1-
from distutils.core import setup
1+
#! /usr/bin/env python3
2+
3+
from setuptools import setup
4+
5+
with open('README.rst') as file:
6+
long_description = file.read()
27

38
setup(
49
name='pymonome',
5-
version='0.2.3',
6-
py_modules=['monome'],
710
author='Artem Popov',
8-
url='http://pypi.python.org/pypi/pymonome',
11+
author_email='[email protected]',
12+
url='https://github.com/artfwo/pymonome',
913
description='a monome serialosc client in python',
10-
long_description=open('README').read(),
14+
long_description=long_description,
15+
version='0.8.1',
16+
py_modules=['monome'],
17+
include_package_data=True,
1118
install_requires=[
12-
"pyOSC >= 0.3",
13-
"pybonjour >= 1.1.1",
19+
'aiosc'
20+
],
21+
classifiers=[
22+
'Development Status :: 4 - Beta',
23+
'Intended Audience :: Developers',
24+
'License :: OSI Approved :: MIT License',
25+
'Programming Language :: Python :: 3',
26+
'Topic :: Multimedia :: Sound/Audio',
27+
'Topic :: Software Development :: Libraries',
1428
],
29+
license='MIT'
1530
)

0 commit comments

Comments
 (0)