-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (37 loc) · 1.18 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
'''Setup module for packaging'''
from setuptools import setup, find_packages
with open("readme.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt", "r", encoding="utf-8") as fh:
requirements = fh.read()
VERSION_NUMBER = "0.1.1-1"
setup(
# Information of the package
name='lumos-cli',
version=VERSION_NUMBER,
author='DSDM - Institut De Recherches Servier',
author_email='[email protected]',
license='MIT',
description='A cell painting plateviewer',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/nicolasboisseau/lumos',
classifiers=[
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
],
# Defining where the source files are, as well as external data
py_modules=['lumoscli', 'lumos'],
packages=find_packages(),
package_data={
'lumos': ["*.yaml"]
},
# Requirements of the package
install_requires=[requirements],
python_requires='>=3.8',
# CLI commands mapping
entry_points='''
[console_scripts]
lumos=lumoscli:cli
'''
)