-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (25 loc) · 820 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
from setuptools import setup, find_packages
setup(
name="didomi_spark",
version="1.0.0",
description="Data challenge for Didomi",
url="https://github.com/gaarv/didomi-data-challenge",
author="Sebastien Hoarau",
author_email="[email protected]",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
],
packages=find_packages(),
python_requires=">=3.8, <4",
package_data={
"didomi_spark": [
"data/input.zip",
"lib/json-serde-1.3.8-jar-with-dependencies.jar",
"core/configuration.toml",
],
},
)