-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (33 loc) · 1.21 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
import setuptools
with open('README.md', 'r') as fh:
long_description = fh.read()
setuptools.setup(
name = 'genetic_algorithm',
packages = ['genetic_algorithm'],
version = '1.0.0',
license='MIT',
description = 'A python package implementing the genetic algorithm',
long_description = long_description,
long_description_content_type='text/markdown',
author = 'He Yingxu',
author_email = '[email protected]',
url = 'https://github.com/YingxuH/genetic_algorithm',
download_url = 'https://github.com/YingxuH/genetic_algorithm/archive/1.0.0.tar.gz',
keywords = ['genetic algorithm', 'machine learning', "optimization"],
install_requires = [
"numpy",
"pandas",
"scipy"
],
classifiers=[
'Development Status :: 4 - Beta', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)