-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
35 lines (31 loc) · 1.13 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
# Copyright (C) 2021 Adrian Antico <[email protected]>
# License: MIT, [email protected]
import pathlib
from setuptools import setup, find_packages
import os
# The directory containing this file
HERE = os.path.dirname(os.path.abspath("__file__"))
with open(os.path.join(HERE, "README.md")) as fid:
README = fid.read()
with open(os.path.join(HERE, "requirements.txt")) as f:
required = f.read().splitlines()
setup(
name="retrofit",
version="0.1.7",
description="AutoML, Forecasting, NLP, Image Classification, Feature Engineering, Model Evaluation, Model Interpretation, Fast Processing.",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/AdrianAntico/retrofit",
author=["Adrian Antico", "Sean Benner"],
author_email="[email protected]",
license="MIT",
packages=find_packages(),
include_package_data=True,
package_data={'': ['datasets/*.csv']},
install_requires=required,
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
)