-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 1.2 KB
/
setup.py
File metadata and controls
32 lines (29 loc) · 1.2 KB
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
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='bss-machinelearning',
version='v0.4.5',
author='Matthew Johnson, Noel Williams, Yisha Chen, Yuki-Jiayi Li',
author_email='greenchicken1902@gmail.com',
maintainer='Matthew Johnson',
maintainer_email='greenchicken1902@gmail.com',
description='Forecasting Demand for Bike Sharing Systems and Analysis with Python',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/GreenMachine582/BSS-MachineLearning',
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3 :: Only'
],
keywords='bss, machine-learning, cross-validation, regression, classification',
python_requires='>=3.10, <4',
)