Skip to content
Snippets Groups Projects
Commit f70ca090 authored by Hervé  MENAGER's avatar Hervé MENAGER
Browse files

setup.py script cleanup, set version

parent 3b8fced6
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@ import os, sys
from setuptools import setup, find_packages
NAME = "jass"
VERSION = "dev"
VERSION = "1.0"
SETUP_DIR = os.path.dirname(__file__)
README = os.path.join(SETUP_DIR, 'README.md')
......@@ -16,18 +16,24 @@ setup(
name=NAME,
version=VERSION,
description="JASS allows for single SNP joint analysis of multiple GWAS summary statistics",
author='Hervé Ménager and Pierre Lechat and Carla Lasry and Vincent Guillemot and Hugues Aschard',
author_email="hmenager@pasteur.fr and pierre.lechat@pasteur.fr and carla.lasry@pasteur.fr and vincent.guillemot@pasteur.fr and hugues.aschard@pasteur.fr",
url="https://gitlab.pasteur.fr/vguillem/jass",
author='Hervé Ménager and Pierre Lechat and Carla Lasry and Vincent Guillemot and Hugues Aschard and Hanna Julienne',
author_email="hmenager@pasteur.fr and pierre.lechat@pasteur.fr and carla.lasry@pasteur.fr and vincent.guillemot@pasteur.fr and hugues.aschard@pasteur.fr and hanna.julienne@pasteur.fr",
url="https://gitlab.pasteur.fr/statistical-genetics/jass",
packages=find_packages(),
install_requires=REQUIRES,
license="?",
license="MIT",
keywords=["GWAS", "Data analysis", "summary statistics"],
package_data={'': ['swagger/swagger.yaml']},
package_data={'jass': ['swagger/swagger.yaml']},
include_package_data=True,
long_description="""\
""",
long_description=readme,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
setup_requires=[
'pytest-runner',
'Flask-Testing'
......@@ -41,5 +47,4 @@ setup(
'jass=jass.__main__:main',
]
}
)
)
\ No newline at end of file
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