-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
55 lines (50 loc) · 1.52 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
# Author(s): Dhruv Srikanth
# Email(s): dsrikant (at) andrew (dot) cmu (dot) edu
# Acknowledgements:
# Copyright (c) 2023 Carnegie Mellon University, Auton Lab
# This code is subject to the license terms contained in the code repo.
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md')) as f:
long_description = f.read()
user_requirements = [
requirement.strip()
for requirement in open(
path.join(here, 'requirements.txt')
).readlines()
]
setup(
name='autonfeat',
version='0.1.0',
author=[
'Dhruv Srikanth',
'Auton Lab'
],
author_email='[email protected]',
description='A High Performance Library for Time-Series Featurization.',
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT',
url='https://autonlab.github.io/AutoFeat',
keywords=[
'artificial intelligence',
'machine learning',
'data science',
'data analysis',
'time-series',
'featurization',
'forecasting',
'high-performance computing',
],
packages=find_packages(where='autonfeat'),
package_dir={'': 'autonfeat'},
package_data={'': ['autonfeat/utils/datasets/data/*.csv']},
install_requires=user_requirements,
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires='>=3.8',
)