-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
28 lines (26 loc) · 862 Bytes
/
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
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="pygenetic",
version="1.0.2",
author="Bharatraj S Telkar, Daniel Isaac, Shreyas V Patil",
description="An Efficient Python Genetic Algorithm API",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/danny311296/pygenetic",
packages=['pygenetic'],
include_package_data=True,
license='MIT',
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
install_requires=[
'rstr==2.2.6',
'numpy==1.22.0',
'matplotlib==2.2.2',
],
)