-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
35 lines (29 loc) · 924 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
28
29
30
31
32
33
34
35
# coding=utf-8
from setuptools import setup, find_packages
DESCRIPTION = "Python interface to Foscam CGI API"
with open('README.md') as f:
LONG_DESCRIPTION = f.read()
with open('requirements.txt') as f:
required = f.read().splitlines()
VERSION = '0.1.2'
CLASSIFIERS = [
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU v2',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2 :: Only',
'Topic :: Software Development :: Libraries :: Python Modules',
]
setup(name='foscontrol',
version=VERSION,
packages=find_packages(),
install_requires=required,
url='https://github.com/MStrecke/pyFosControl',
license='GNU v2',
include_package_data=True,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
platforms=['any'],
classifiers=CLASSIFIERS,
#test_suite='tests',
)