forked from miccoli/pyownet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 1.03 KB
/
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
from pyownet import __version__
with open('README.txt') as file:
long_description = file.read()
from distutils.core import setup
try:
from distutils.command.build_py import build_py_2to3 as build_py
except ImportError:
# 2.x
from distutils.command.build_py import build_py
setup(name = 'pyownet',
version = __version__,
packages = ['pyownet', ],
description = 'python ownet client library',
long_description = long_description,
author = 'Stefano Miccoli',
author_email = 'stefano.miccoli@polimi.it',
url = 'https://github.com/miccoli/pyownet',
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
cmdclass = {'build_py':build_py},
)