-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (30 loc) · 1003 Bytes
/
setup.py
File metadata and controls
34 lines (30 loc) · 1003 Bytes
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
from setuptools import setup, find_packages
import os
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "Readme.md").read_text()
with open("requirements.txt", "r") as f:
requirements = f.read().splitlines()
setup(
name="tracebloc_ingestor",
version="0.2.10",
author="Tracebloc",
author_email="support@tracebloc.com",
description="A flexible data ingestion library for various file formats",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/tracebloc/data-ingestors",
packages=find_packages(),
package_data={
"": ["Readme.md"],
},
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
install_requires=requirements,
)