-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (45 loc) · 1.49 KB
/
setup.py
File metadata and controls
46 lines (45 loc) · 1.49 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
"""Install script for setuptools."""
from setuptools import find_packages
from setuptools import setup
long_description = open("README.md").read()
setup(
name='pyCapsid',
version='0.5.10',
description='A set of computational tools written in python for the analysis of viral capsids',
long_description =long_description,
long_description_content_type='text/markdown',
author='Luque Lab, Colin Brown, Anuradha Agarwal',
author_email='colintravisbrown@gmail.com',
license='MIT License',
url='https://github.com/luquelab/pycapsid',
packages=find_packages("src"),
package_dir={"": "src"},
python_requires = '>=3.7, <3.11',
install_requires=[
'biotite',
'scikit-learn',
'numpy',
'scipy',
'matplotlib',
'pillow',
'numba>=0.57',
'statsmodels',
'toml',
'markdown',
'seaborn'
],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
)