Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pyea
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
amraj
pyea
Commits
90466cad
Commit
90466cad
authored
5 years ago
by
amraj
Browse files
Options
Downloads
Patches
Plain Diff
Packaging the project and fix gitignore file name
parent
c5ce7ff4
No related branches found
No related tags found
No related merge requests found
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gititnore
+0
-126
0 additions, 126 deletions
.gititnore
README.md
+1
-0
1 addition, 0 deletions
README.md
__init__.py
+1
-0
1 addition, 0 deletions
__init__.py
setup.py
+22
-0
22 additions, 0 deletions
setup.py
with
24 additions
and
126 deletions
.gititnore
deleted
100644 → 0
+
0
−
126
View file @
c5ce7ff4
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
logs/
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
# Translations
*.mo
*.pot
# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal
# Flask stuff:
instance/
.webassets-cache
# Scrapy stuff:
.scrapy
# Sphinx documentation
docs/_build/
# PyBuilder
target/
# Jupyter Notebook
.ipynb_checkpoints
# IPython
profile_default/
ipython_config.py
# pyenv
.python-version
# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock
# celery beat schedule file
celerybeat-schedule
# SageMath parsed files
*.sage.py
# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# Spyder project settings
.spyderproject
.spyproject
# Rope project settings
.ropeproject
# mkdocs documentation
/site
# mypy
.mypy_cache/
.dmypy.json
dmypy.json
# Pyre type checker
.pyre/
\ No newline at end of file
This diff is collapsed.
Click to expand it.
README.md
0 → 100644
+
1
−
0
View file @
90466cad
# PyEA
This diff is collapsed.
Click to expand it.
__init__.py
+
1
−
0
View file @
90466cad
name
=
"
pyea
"
\ No newline at end of file
This diff is collapsed.
Click to expand it.
setup.py
0 → 100644
+
22
−
0
View file @
90466cad
import
setuptools
with
open
(
"
README.md
"
,
"
r
"
)
as
fh
:
long_description
=
fh
.
read
()
setuptools
.
setup
(
name
=
"
pyea-amraj
"
,
version
=
"
0.0.1
"
,
author
=
"
Amirhossein Rajabi
"
,
author_email
=
"
amraj@dtu.dk
"
,
description
=
"
An Implementation of EA algorithms in Python
"
,
long_description
=
long_description
,
long_description_content_type
=
"
text/markdown
"
,
url
=
"
https://lab.compute.dtu.dk/amraj/pyea
"
,
packages
=
setuptools
.
find_packages
(),
classifiers
=
[
"
Programming Language :: Python :: 3
"
,
"
License :: OSI Approved :: MIT License
"
,
"
Operating System :: OS Independent
"
,
],
python_requires
=
'
>=3.1
'
,
)
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment