-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (21 loc) · 878 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
PROJECT_URLS = {
'Bug Tracker': 'https://github.com/ngocjr7/geneticpython/issues',
'Documentation': 'https://github.com/ngocjr7/geneticpython/blob/master/README.md',
'Source Code': 'https://github.com/ngocjr7/geneticpython'
}
with open('requirements.txt') as f:
install_requires = f.read().strip().split('\n')
setup(name='geneticpython',
description='A simple and friendly Python framework for genetic-based algorithms',
author='Ngoc Bui',
long_description=long_description,
long_description_content_type="text/markdown",
author_email='[email protected]',
project_urls=PROJECT_URLS,
version='0.0.3',
packages=find_packages(),
install_requires=install_requires,
python_requires='>=3.6')