-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
47 lines (43 loc) · 1.34 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
40
41
42
43
44
45
46
47
# -*- encoding: utf-8 -*-
import setuptools
with open('README.md', 'r') as f:
long_description = f.read()
setuptools.setup(
name='hematopy',
description='Python and Blood',
version='0.0.2.dev1',
author='Gustavo RPS @ ArgoCrew/ArgoPy',
author_email='[email protected]',
long_description=long_description,
long_description_content_type='text/markdown',
package_dir={'': 'src'},
packages=setuptools.find_packages(where='src'),
install_requires=[
'CairoSVG==2.1.3',
'click==6.7',
'sanic==0.8.3',
'lxml==4.2.1',
'python-magic==0.4.15',
'google-cloud-storage==1.10.0'
],
# package_dir={'':'hematopy'},
entry_points = {
'console_scripts': [
'hematopy=hematopy.cli:main'
],
},
license='BSD-3',
keywords='blood banner utility',
project_urls={
'Issues': 'https://github.com/ArgoCrew/hematopy/issues',
'Source Code': 'https://github.com/ArgoCrew/hematopy',
},
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Intended Audience :: Healthcare Industry',
],
)