-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 916 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (27 loc) · 916 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
from setuptools import setup, find_packages
setup(
name="InteroperabilityEnabler",
version="__VERSION__",
author="Shahin ABDOUL SOUKOUR",
author_email="abdoul-shahin.abdoul-soukour@inria.fr",
description="Interoperability Enabler",
long_description=open("README_package.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/Sedimark/InteroperabilityEnabler",
license="",
packages=find_packages(
include=["InteroperabilityEnabler", "InteroperabilityEnabler.*"],
),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
install_requires=["numpy", "pandas", "python-dateutil", "pytz", "six", "tzdata", "xlrd"],
extras_require={
"dev": [
"pytest",
],
},
include_package_data=True,
)