-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·41 lines (38 loc) · 1.32 KB
/
setup.py
File metadata and controls
executable file
·41 lines (38 loc) · 1.32 KB
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
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# setup.py
# python-freebox
#
# Created by Antonin Lacombe on 2013-04-04.
# Copyright 2013 Antonin Lacombe. All rights reserved.
#
import sys
from setuptools import setup
from freebox import __version__
requirements = open('requirements.txt').readlines()
setup(name='freebox',
version=__version__,
license='LGPLv3',
description='a freebox (French set-top box) python client and cli management',
long_description=open('README.md').read(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Natural Language :: English',
'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='freebox',
author='Antonin Lacombe',
author_email='antonin.lacombe@gmail.com',
url='https://github.com/iXioN/python-freebox.git',
packages=['freebox', ],
entry_points={
'console_scripts': ['freebox = freebox.freebox:main'],
},
#test_suite='python-freebox.tests.suite',
install_requires=requirements,)