forked from luk6xff/Packt-Publishing-Free-Learning
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
50 lines (45 loc) · 1.42 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import os
from setuptools import find_packages, setup
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as f:
long_description = f.read()
package_version = '1.2.2'
requirements = [
'click==7.0',
'google-api-python-client==1.6.3',
'requests==2.20.0',
'python-slugify==1.2.6'
]
dev_requirements = [
'mccabe==0.6.1',
'pycodestyle==2.4.0',
'pyflakes==2.0.0',
'pylama==7.6.5'
]
setup(
name='packt',
version=package_version,
license='MIT',
description='Script for grabbing daily Packt Free Learning ebooks',
author='Łukasz Uszko',
author_email='[email protected]',
url='https://github.com/luk6xff/Packt-Publishing-Free-Learning',
long_description=long_description,
long_description_content_type='text/markdown',
package_dir={'': 'src'},
packages=find_packages('src'),
py_modules=['packtPublishingFreeEbook', 'api'],
install_requires=requirements,
extras_require={'dev': dev_requirements},
entry_points={
'console_scripts': [
'packt-cli = packtPublishingFreeEbook:packt_cli',
],
},
download_url='https://github.com/luk6xff/Packt-Publishing-Free-Learning/archive/v1.2.2.tar.gz',
classifiers=[
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
]
)