Update setup.py
This commit is contained in:
21
setup.py
21
setup.py
@ -1,33 +1,22 @@
|
|||||||
from setuptools import setup, find_packages
|
from setuptools import find_packages, setup
|
||||||
|
|
||||||
with open("README.md", "r") as fh:
|
with open("README.md", "r") as fh:
|
||||||
long_description = fh.read()
|
long_description = fh.read()
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='EasyGA',
|
name='EasyGA',
|
||||||
version='0.0.12',
|
version='0.0.14',
|
||||||
description='A ubiquitous or general purpuse GA',
|
description='A ubiquitous or general purpuse GA',
|
||||||
#py_modules=["EasyGA"],
|
#py_modules=["EasyGA"],
|
||||||
#package_dir={'':'src'},
|
#package_dir={'':'src'},
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
|
py_modules=['src'],
|
||||||
python_requires='>=3.6',
|
python_requires='>=3.6',
|
||||||
url="https://github.com/danielwilczak101/EasyGA",
|
url="https://github.com/danielwilczak101/EasyGA",
|
||||||
author="Daniel Wilczak",
|
author="Daniel Wilczak",
|
||||||
author_email="danielwilczak101@gmail.com",
|
author_email="danielwilczak101@gmail.com",
|
||||||
long_description = long_description,
|
long_description = long_description,
|
||||||
long_description_content_type = "text/markdown",
|
long_description_content_type = "text/markdown",
|
||||||
classifier=[
|
install_requires = ["blessings ~= 1.7",],
|
||||||
"Programming Language :: Python :: 3.0",
|
|
||||||
"Programming Language :: Python :: 3.6",
|
|
||||||
"Programming Language :: Python :: 3.7",
|
|
||||||
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
|
|
||||||
"Operating System :: OS Independent",
|
|
||||||
],
|
|
||||||
install_requires = ["blessings ~= 1.7",
|
|
||||||
],
|
|
||||||
extra_require = {
|
|
||||||
"dev": [
|
|
||||||
"pytest>=3.7",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user