-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
44 lines (41 loc) · 1.51 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
# -*- coding: utf-8 -*-
"""
Description : Package the project
Author : xxm
"""
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
if __name__ == '__main__':
setup(name='joblib',
version='0.1',
author='ximing Xing',
author_email='ximingxing@gmail.com',
url='https://ximingxing.github.io/',
description='Machine Learning in Action',
long_description=long_description,
license='BSD',
classifiers=[
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries',
],
python_requires='>=3',
install_requires=['numpy>=1.17.2',
'scikit-learn>=0.21.2',
'loguru>=0.3.2',
'scipy>=1.3.1', 'scrapy'],
platforms='any',
packages=find_packages(exclude=['/data', '*.pkz'])
)