-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
29 lines (26 loc) · 1.14 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env python
import setuptools
with open('README.md', 'r') as fh:
long_description = fh.read()
setuptools.setup(
name='pyplr', # Replace with your own username
version='1.0.3',
author='Joel T. Martin',
author_email='[email protected]',
description='Software for researching the pupillary light reflex',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/PyPlr/cvd_pupillometry',
project_urls={'Documentation': 'https://pyplr.github.io/cvd_pupillometry/',
'bioRxiv preprint':'https://www.biorxiv.org/content/10.1101/2021.06.02.446731v1'},
install_requires=['scipy','matplotlib','msgpack','pyzmq','requests',
'numpy','seaborn','seabreeze','numexpr','tables','pandas'],
packages=setuptools.find_packages(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Topic :: Scientific/Engineering :: Information Analysis',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.7'
],
)