forked from herrersystem/fbxtools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (18 loc) · 646 Bytes
/
setup.py
File metadata and controls
21 lines (18 loc) · 646 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(name = 'fbxtools',
version = '1.0',
author = 'herrersystem',
author_email = 'contact@evhunter.fr',
url = "http://github.com/herrersystem/fbxtools",
keywords = 'fbx freebox',
description = 'Provide intialisation, connect and disconnect functions for Freebox OS application.',
license = 'GNU General Public License (GPL)',
packages = ['fbxtools'],
install_requires = ['apize', 'netifaces'],
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
],
)