-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 1.05 KB
/
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/env python
from setuptools import setup, find_packages
version = None
exec(open('dagr_selenium/version.py').read())
setup(
name='dagr_selenium',
version=version,
description='Selenium worker & manager scripts for DAGR Revamped',
author='Phillip Mackintosh',
url='https://github.com/phillmac/dagr_selenium',
packages=find_packages(),
install_requires=[
'docopt==0.6.2',
'python-dotenv==0.17.1',
'dagr_revamped @ git+https://github.com/phillmac/[email protected]#egg=dagr_revamped',
'selenium==3.141.0',
'aiofiles @ git+https://github.com/phillmac/[email protected]',
'aiohttp==3.7.4.post0',
'aiojobs==0.3.0',
'portalocker==2.7.0'
],
extras_require={
'calmjs': ['calmjs==3.3.1'],
'easywebdav': ['easywebdav==1.2.0'],
'full': ['calmjs', 'easywebdav']
},
classifiers=[
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
]
)