-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathsetup.py
34 lines (30 loc) · 1.04 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
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
with open("README.md") as f:
long_description = f.read()
with open("requirements.txt", "r") as f:
required = f.read().splitlines()
setup(
name="alepython",
description="Python Accumulated Local Effects (ALE) package.",
author="Maxime Jumelle",
author_email="[email protected]",
license="Apache 2",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/MaximeJumelle/alepython/",
install_requires=required,
extras_require={"test": ["pytest>=5.4", "pytest-cov>=2.8"]},
setup_requires=["setuptools-scm"],
python_requires=">=3.5",
use_scm_version=dict(write_to="src/alepython/_version.py"),
keywords="alepython",
package_dir={"": "src"},
packages=find_packages(where="src"),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approched :: Apache 2",
"Operating System :: OS Independent",
],
)