-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
39 lines (34 loc) · 1.31 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
30
31
32
33
34
35
36
37
38
39
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
# Arguments marked as "Required" below must be included for upload to PyPI.
# Fields marked as "Optional" may be commented out.
setup(
name='placozoan',
author='Leo Guignard',
author_email='[email protected]',
version='0.0.1',
description='Tracking placozoans',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/CENTURI-Hackathon-2022/placozoan-visualisation',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
],
install_requires=['scipy', 'numpy', 'matplotlib',
'scikit-image', 'scikit-learn',
'tifffile', 'ipython', 'jupyter',
'napari', 'morphsnakes', 'einops'],
extras_require={
'all': ['tensorflow-gpu', 'yapic']
}
)