This repository has been archived by the owner on Apr 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
56 lines (48 loc) · 1.64 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#! /usr/bin/env python
# -*- coding: utf-8 -*-
__author__ = ["Antoine Guillaume"]
import codecs
import toml
from setuptools import find_packages, setup
pyproject = toml.load("pyproject.toml")
def long_description():
with codecs.open("README.md", encoding="utf-8-sig") as f:
return f.read()
def setup_package():
"""Set up package."""
setup(
author_email=pyproject["project"]["authors"][0]["email"],
author=pyproject["project"]["authors"][0]["name"],
classifiers=pyproject["project"]["classifiers"],
description=pyproject["project"]["description"],
download_url=pyproject["project"]["urls"]["download"],
include_package_data=True,
install_requires=pyproject["project"]["dependencies"],
keywords=pyproject["project"]["keywords"],
license=pyproject["project"]["license"],
long_description=long_description(),
name=pyproject["project"]["name"],
package_data={
"convst": [
"*.csv",
"*.csv.gz",
"*.arff",
"*.arff.gz",
"*.txt",
"*.ts",
"*.tsv",
]
},
packages=find_packages(
where=".",
exclude=["tests", "tests.*"],
),
project_urls=pyproject["project"]["urls"],
python_requires=pyproject["project"]["requires-python"],
setup_requires=pyproject["build-system"]["requires"],
url=pyproject["project"]["urls"]["repository"],
version=pyproject["project"]["version"],
zip_safe=False,
)
if __name__ == "__main__":
setup_package()