forked from h2g2bob/ipp-server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·34 lines (31 loc) · 1002 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
#! /usr/bin/python
from setuptools import setup, find_packages
REQUIREMENTS = [
"requests"
]
setup(
name='ippserver',
author="David Batley",
author_email="git@dbatley.com",
license="BSD2",
description='An IPP server which acts like a printer',
long_description='A module which implements enough of IPP to fool CUPS into thinking it is a real printer.',
version='0.2',
url='http://github.com/h2g2bob/ipp-server',
packages=find_packages(exclude=["tests"]),
test_suite="tests.test_request",
package_data={
'ippserver': ['data/*'],
},
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'],
install_requires=REQUIREMENTS,
entry_points={
'console_scripts': [
'ippserver = ippserver.__main__:main',
]
}
)