diff --git a/setup.py b/setup.py
index eb65494887dfe29b96fc2e94c1485b483bd67c37..6efc626731d8890ca89724406f824ea45f6d5485 100644
--- a/setup.py
+++ b/setup.py
@@ -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