This repository has been archived by the owner on Oct 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
62 lines (53 loc) · 1.57 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
58
59
60
61
62
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from os import path
# Package meta-data.
NAME = 'genetic_optimizer'
DESCRIPTION = 'Genetic algorithm optimizer using K-Means clustering with one way ANOVA algorithms.'
URL = 'https://github.com/szachovy/GeneticOptimizer'
EMAIL = '[email protected]'
AUTHOR = 'WJ Maj'
REQUIRES_PYTHON = '>=3.6.5'
VERSION = '0.1.8'
REQUIRED = [
'configparser>=3.7.4',
'numpy>=1.16.3',
'pandas>=0.24.2',
'xlsxwriter>=1.1.8',
'sklearn>=0.0',
'scipy>=1.3.0',
'matplotlib>=3.1.0',
'xlrd>=1.0.0'
]
with open(path.join(path.abspath(path.dirname(__file__)), 'README.md')) as f:
long_description = f.read()
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=long_description,
long_description_content_type='text/markdown',
author=AUTHOR,
author_email=EMAIL,
python_requires=REQUIRES_PYTHON,
url=URL,
packages=find_packages(exclude=["tests", "*.tests", "*.tests.*", "tests.*", "Images"]),
install_requires=REQUIRED,
include_package_data=True,
package_data = {
# If any package contains *.ini files, include them
'': ['*.ini'],
'': ['*.conf']
},
license='MIT',
classifiers=[
# Trove classifiers
'License :: OSI Approved :: MIT License',
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
]
)