-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (37 loc) · 1.2 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
from setuptools import setup, find_packages
# Read the contents of the README file
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as fr:
requirements = [pkg.split("\n")[0].strip() for pkg in fr.readlines()]
setup(
name="chunkifyr",
version="0.1.2",
author="Mohammed Faheem",
author_email="[email protected]",
description="Flexible and efficient Python library for advanced text chunking.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/xdevfaheem/chunkifyr",
project_urls={
"Bug Tracker": "https://github.com/xdevfaheem/chunkifyr/issues",
"Home Page": "https://github.com/xdevfaheem/chunkifyr"
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
packages=find_packages(where="src"),
python_requires=">=3.9",
install_requires=[
requirements
],
extras_require={
"dev": [
"pytest>=6.0",
"black",
],
},
)