generated from aaivu/aaivu-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (51 loc) · 1.93 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
57
from setuptools import find_packages, setup
from codecs import open
from os import path
HERE = path.abspath(path.dirname(__file__))
with open(path.join(HERE, "README.md"), "r", encoding="utf-8") as f:
long_description = f.read()
with open(path.join(HERE, "requirements.txt"), "r", encoding="utf-8") as f:
requirements = f.read().splitlines()
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
]
setup(
name="ibat",
version="0.1.0-rc1",
description="Python framework designed to improve the robustness of real-time bus arrival/dwell time \
prediction models in heterogeneous traffic conditions by addressing real concept drift.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/aaivu/ibat/",
keywords=[
"Bus arrival/dwell time prediction",
"Hybrid batch processing",
"Concept drift handling",
"Active strategy",
"Incremental learning",
],
author="Aaivu",
author_email="[email protected]",
license="MIT",
python_requires=">=3.9",
classifiers=classifiers,
packages=find_packages(exclude=["tests", "tests.*"]),
include_package_data=True,
package_data={"": ["datasets/_datasets/*.csv"]},
install_requires=requirements,
project_urls={
"Source Code": "https://github.com/aaivu/ibat",
"Download": "https://github.com/aaivu/ibat/releases",
"Documentation": "https://github.com/aaivu/ibat/blob/master/README.md",
"Bug Tracker": "https://github.com/aaivu/ibat/issues",
},
)