-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
57 lines (41 loc) · 2.12 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
56
57
from setuptools import setup
long_description_string = "For detailed information,\n" \
"please look at : " \
"https://github.com/AyberkYavuz/artificial_neural_network_automation"
setup(
# Name of the package
name='artificial_neural_network_model_automation',
# Packages to include into the distribution
packages=['artificial_neural_network_model_automation', 'artificial_neural_network_model_automation_helper'],
# Start with a small number and increase it with every change you make
# https://semver.org
version='0.0.3',
# Chose a license from here: https://help.github.com/articles/licensing-a-repository
# For example: MIT
license='MIT',
# Short description of your library
description='This repository is for automating artificial neural network model creation with tabular data using Keras framework.',
# Long description of your library
long_description="""{}""".format(long_description_string),
long_description_context_type='text/markdown',
# Your name
author='Ayberk Yavuz',
# Your email
author_email='[email protected]',
# Either the link to your github or to your website
url='https://github.com/AyberkYavuz/artificial_neural_network_automation',
# Link from which the project can be downloaded
download_url='https://github.com/AyberkYavuz/artificial_neural_network_automation/archive/refs/tags/0.0.3.tar.gz',
# List of keyword arguments
keywords=['Keras', 'artificial neural networks', 'automation',
'supervised learning', 'tabular data'],
# List of packages to install with this one
install_requires=['tensorflow>=2.4.1', 'Keras>=2.4.3', 'pandas>=1.2.3',
'numpy>=1.19.5', 'sklearn>=0.0', 'joblib>=0.16.0',
'pydot>=1.4.2'],
# https://pypi.org/classifiers/
classifiers=['Programming Language :: Python :: 3', 'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License'],
python_requires=">=3.8"
)