Skip to content
Snippets Groups Projects
Commit 1c7639b4 authored by Ashrith Sagar Yedlapalli's avatar Ashrith Sagar Yedlapalli :speech_balloon:
Browse files

c0.17.1 Updated setup.py and setup.cfg

parent 4512c62b
No related branches found
No related tags found
No related merge requests found
[aliases]
test=pytest
[flake8]
max-line-length=120
"""
pip setup.py
"""
from setuptools import setup, find_packages
setup(
name='pep_mod',
version='0.17.0',
packages=find_packages(include=['pep_mod.py']),
description='Peptide sequence mutater using Alanine Scanning',
author='Ashrith Sagar Yedlapalli',
author_email='ashrith9sagar@gmail.com',
url='https://2022.igem.wiki/mit-mahe/software',
install_requires=[
'pandas'
],
setup_requires=['pytest-runner', 'flake8'],
tests_require=['pytest'],
entry_points={
'console_scripts': ['pep_mod=pep_mod.pep_mod:main']
}
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment