-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (48 loc) · 1.62 KB
/
setup.py
File metadata and controls
55 lines (48 loc) · 1.62 KB
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
51
52
53
54
55
from setuptools import setup, find_packages
setup(
name="ncert_learn", # Replace with your package name
version="5.5.7", # Initial version
author="Muhammed Shafin P",
author_email="hejhdiss@example.com",
description="A Python Module for NCERT Class 12 Computer Science - Learn Python and MySQL with ease!",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
packages=find_packages(),
doc_url="https://hejhdiss.github.io/ncert_learn-website/",
url="https://github.com/hejhdiss/ncert_learn", # Add your GitHub repository URL here
project_urls={
"Bug Tracker": "https://github.com/hejhdiss/ncert_learn/issues",
"Documentation": "https://hejhdiss.github.io/ncert_learn-website/",
"Instagram": "https://www.instagram.com/ncert_learn"
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
install_requires=[
'mysql-connector-python',
'pytest',
'tox',
'requests',
'psutil',
'beautifulsoup4',
'googlesearch-python',
'python-nmap',
'PyPDF2',
'numpy',
'matplotlib',
'brotli',
'autopep8',
'pylint',
'pandas',
'scikit-learn',
'joblib',
'cryptography',
'phonenumbers',
'bcrypt',
# Add this line to include the MySQL connector
],
include_package_data=True,
)