-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 1.24 KB
/
setup.py
File metadata and controls
28 lines (25 loc) · 1.24 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
import setuptools
url = "https://github.com/MERTULAS/learned"
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(name="learned",
version="0.5.4.5",
description="Package containing deep learning model, classic machine learning models, various preprocessing functions and result metrics",
long_description=long_description,
long_description_content_type="text/markdown",
author="H.Mert ULAS",
url=url,
license='MIT',
author_email="h.mert.ulas@gmail.com",
packages=setuptools.find_packages(),
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
],
python_requires='>=3.6.0',
install_requires=["numpy>=1.14.0"])