forked from pywebdriver/pywebdriver
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 834 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 834 Bytes
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
from setuptools import setup, find_packages
version = open('VERSION').read().strip()
setup(
name='pywebdriver',
version=version,
author='Akretion',
author_email='contact@akretion.com',
url='https://github.com/akretion/pywebdriver/',
description='Python Web Services to communicate wih Devices',
license="AGPLv3+",
long_description=open('README.md').read(),
packages=find_packages(),
install_requires=[ r.strip() for r in open('requirement.txt').read().splitlines() ],
scripts = ['pywebdriverd'],
include_package_data=True,
zip_safe=False
dependecy_links = [
'https://github.com/akretion/pypostelium/archive/master.zip#egg=pypostelium-0.0.1',
]
extras_require = {
'cups': ["pycups>=1.9.73"],
'pypostelium': ["pypostelium>=0.0.1"],
}
)