-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 813 Bytes
/
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
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name="extractor",
version="0.0.1",
include_package_data=True,
python_requires='>=3.11',
packages=find_packages(),
setup_requires=['setuptools-git-versioning'],
install_requires=requirements,
author="Frederic Marechal",
author_email="[email protected]",
description="A short description of your package",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
version_config={
"dirty_template": "{tag}",
}
)