Create setup.py
Browse files
setup.py
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from setuptools import setup, find_packages
|
| 2 |
+
|
| 3 |
+
with open("README.md", "r", encoding="utf-8") as fh:
|
| 4 |
+
long_description = fh.read()
|
| 5 |
+
|
| 6 |
+
setup(
|
| 7 |
+
name="StackMathematics",
|
| 8 |
+
version="0.1.0",
|
| 9 |
+
author="SafeMind Community",
|
| 10 |
+
author_email="furkannar168@hotmail.com",
|
| 11 |
+
description="Advanced Mathematics AI calculator tool with Stack Exchange Dataset Integration",
|
| 12 |
+
url="https://github.com/TheOfficialFurkanNar/StackMathematics",
|
| 13 |
+
packages=find_packages(),
|
| 14 |
+
classifiers=[
|
| 15 |
+
"Development Status :: 3 - Alpha",
|
| 16 |
+
"Intended Audience :: Education",
|
| 17 |
+
"Intended Audience :: Science/Research",
|
| 18 |
+
"Topic :: Scientific/Engineering :: Mathematics",
|
| 19 |
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
| 20 |
+
"License :: OSI Approved :: MIT License",
|
| 21 |
+
"Programming Language :: Python :: 3",
|
| 22 |
+
"Programming Language :: Python :: 3.8",
|
| 23 |
+
"Programming Language :: Python :: 3.9",
|
| 24 |
+
"Programming Language :: Python :: 3.10",
|
| 25 |
+
"Programming Language :: Python :: 3.11",
|
| 26 |
+
],
|
| 27 |
+
python_requires=">=3.8",
|
| 28 |
+
install_requires=[
|
| 29 |
+
"requests>=2.31.0",
|
| 30 |
+
"python-dateutil>=2.8.2",
|
| 31 |
+
],
|
| 32 |
+
extras_require={
|
| 33 |
+
"dev": [
|
| 34 |
+
"pytest>=7.4.0",
|
| 35 |
+
"pytest-cov>=4.1.0",
|
| 36 |
+
"black>=23.0.0",
|
| 37 |
+
"flake8>=6.0.0",
|
| 38 |
+
],
|
| 39 |
+
"data": [
|
| 40 |
+
"pandas>=2.0.0",
|
| 41 |
+
"numpy>=1.24.0",
|
| 42 |
+
],
|
| 43 |
+
"examples": [
|
| 44 |
+
"jupyter>=1.0.0",
|
| 45 |
+
"matplotlib>=3.7.0",
|
| 46 |
+
"seaborn>=0.12.0",
|
| 47 |
+
],
|
| 48 |
+
}
|
| 49 |
+
)
|