-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
43 lines (32 loc) · 1.21 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
import setuptools
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README.md').read()
print(long_description)
setuptools.setup(
#Here is the module name.
name="ScrapeData",
#version of the module
version="0.0.5",
#Name of Author
author="Mayank khursija",
#your Email address
author_email="mk6619@gmail.com",
#Small Description about module
description="Python module to get table data from any webpage and converts it into either Json or Csv",
long_description_content_type="text/markdown",
long_description=long_description,
#Specifying that we are using markdown file for description
#Any link to reach this module, if you have any webpage or github profile
url="https://github.com/mk6619/",
packages=setuptools.find_packages(),
install_requires=['setuptools', 'pandas', 'requests', 'beautifulsoup4'],
#classifiers like program is suitable for python3, just leave as it is.
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)