https://github.com/cvnlab/GLMsingle
Raw File
Tip revision: 3a1a580eae6bc7e221cbe01101be3c669687dc6a authored by Kendrick Kay on 01 November 2022, 22:14:32 UTC
Merge branch 'main' of https://github.com/kendrickkay/GLMsingle into main
Tip revision: 3a1a580
setup.py
from setuptools import setup, find_packages

requires = []
with open('requirements.txt') as reqfile:
    requires = reqfile.read().splitlines()

with open('README.md', encoding='utf-8') as readmefile:
    long_description = readmefile.read()


setup(
    name='GLMsingle',
    version='0.0.1',
    description='Python GLMsingle',
    url='https://github.com/kendrickkay/GLMsingle',
    long_description=long_description,
    long_description_content_type='text/markdown',
    classifiers=[
      "Programming Language :: Python",
      "Development Status :: 1 - Planning",
      "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
      "Topic :: Scientific/Engineering",
      "Intended Audience :: Science/Research",
      ],
    maintainer='Ian Charest',
    maintainer_email='charest.ian@gmail.com',
    keywords='neuroscience ',
    packages=find_packages(),
    include_package_data=True,
    zip_safe=False,
    install_requires=requires
)
back to top