-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (43 loc) · 1.3 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
from setuptools import setup, find_packages
# Read the contents of README file
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='ssind',
version='0.1.4',
description='Take Unlimited ScreenShot Automation and make a report',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/irfnrdh/ssind/issues',
author='Irfannur Diah',
author_email='[email protected]',
license='AGPLv3',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
],
keywords='sample setuptools development',
project_urls={
'Documentation': 'https://github.com/irfnrdh/ssind/wiki',
'Source Code': 'https://github.com/irfnrdh/ssind',
'Issue Tracker': 'https://github.com/irfnrdh/ssind/issues',
},
packages=find_packages(),
install_requires=[
'Flask',
'pdfkit',
'tqdm',
'click',
'selenium',
'requests'
],
entry_points={
'console_scripts': [
'ssind = ssind.ssind:main',
],
},
include_package_data=True,
)