-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (44 loc) · 1.39 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
import re
import setuptools
# Extract the version from the init file.
VERSIONFILE = "tsds/__init__.py"
getversion = re.search(
r"^__version__ = ['\"]([^'\"]*)['\"]", open(VERSIONFILE, "rt").read(), re.M
)
if getversion:
new_version = getversion.group(1)
else:
raise RuntimeError(f"Unable to find version string in {VERSIONFILE}.")
# Configurations
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
install_requires=[
"matplotlib",
"numpy",
"pandas",
"sklearn",
"shap",
"nltk",
],
python_requires=">=3",
name="tsds",
version=new_version,
author="J.Udovic",
author_email="[email protected]",
description="Python package for my library tsds.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jakobudovic/tsds",
download_url="https://github.com/jakobudovic/tsds/archive/"
+ new_version
+ ".tar.gz",
packages=setuptools.find_packages(), # Searches throughout all dirs for files to include
include_package_data=True, # Must be true to include files depicted in MANIFEST.in
license_files=["LICENSE"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
],
)