Skip to content

Commit

Permalink
Update Setup
Browse files Browse the repository at this point in the history
  • Loading branch information
irfnrdh committed May 26, 2023
1 parent 6974d9d commit 0d9c439
Showing 1 changed file with 29 additions and 2 deletions.
31 changes: 29 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,40 @@
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='1.0.0',
version='0.1.1',
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='irfnrdh@gmail.com',
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',
# Add any other dependencies required by your application
'click',
'selenium',
'requests'
],
entry_points={
'console_scripts': [
Expand All @@ -17,3 +43,4 @@
},
include_package_data=True,
)

0 comments on commit 0d9c439

Please sign in to comment.