-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 693 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 693 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
#!/usr/bin/env python
from datetime import datetime
from setuptools import setup
setup(
name='JustWatch Scraper',
version=datetime.now().strftime('%Y.%m.%d.%H%M%S'),
packages=['justwatch'],
# If you directly `import` packages, put them here.
# The full dependency tree with specific versions goes in requirements.txt
install_requires=[ 'splinter'],
entry_points={
'console_scripts': [
'justwatch = justwatch.main:main',
],
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
],
)