Skip to content

Commit

Permalink
(#23) register package in the PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
SevgiAkten committed Aug 14, 2024
1 parent 2a991e2 commit f0355e3
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,9 @@ __pycache__/**
paper/paper.pdf
*.csl
docs/_build/**
docs/html/**
docs/html/**

# build output directories
/build/
/dist/
/*.egg-info/
20 changes: 20 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
from setuptools import setup, find_packages

with open('requirements.txt') as f:
required = f.read().splitlines()

setup(
name='pycellga',
version='0.1.0',
description='A Python Package for Improved Cellular Genetic Algorithms',
author='SEVGİ AKTEN KARAKAYA, MEHMET HAKAN SATMAN',
author_email='sevgiakten@gmail.com, mhsatman@gmail.com',
packages=find_packages(),
install_requires=required,
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
)

0 comments on commit f0355e3

Please sign in to comment.