-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
38 lines (30 loc) · 848 Bytes
/
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
#!/usr/bin/env python
# Install script
import os
from os.path import join as pjoin
from setuptools import setup
from setuptools.command.install import install
#
longdescription = """
# sbx2imagej
``pip install sbx2imagej``
Source code is in [the repository](https://github.com/orena1/sbx2imagej.git)
"""
setup(
name = 'sbx2imagej',
version = '0.0.7',
author = 'Oren Amsalem',
author_email = 'oren.a4@gmail.com',
description = "...",
long_description = longdescription,
long_description_content_type='text/markdown',
license = 'GPL',
install_requires = ['scipy', 'sbxreader', 'pyimagej', 'PyQt5'],
url = "https://github.com/orena1/sbx2imagej",
packages = ['sbx2imagej'],
entry_points = {
'console_scripts': [
'sbx2imagej = sbx2imagej.sbx2imagej:main',
]
},
)