forked from seaflow-uw/seaflowpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (36 loc) · 993 Bytes
/
Copy pathsetup.py
File metadata and controls
37 lines (36 loc) · 993 Bytes
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
from setuptools import setup, find_packages
import versioneer
setup(
name='seaflowpy',
description='A Python library for SeaFlow data.',
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
url='https://github.com/armbrustlab/seaflowpy',
author='Chris T. Berthiaume',
author_email='chrisbee@uw.edu',
packages=find_packages(where='src'),
package_dir={'': 'src'},
include_package_data=True,
install_requires=[
'boto3',
'click',
'fabric3',
'fastparquet',
'hdbscan',
'kern-smooth',
'matplotlib',
'pandas',
'python-snappy'
],
entry_points={
'console_scripts': [
'seaflowpy=seaflowpy.cli.cli:cli'
]
},
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
],
zip_safe=True
)