forked from scijava/scyjava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 649 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (19 loc) · 649 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md')) as f:
scyjava_long_description = f.read()
setup(
name='scyjava',
python_requires='>=3',
packages=find_packages(),
version='1.1.1.dev0',
author='Curtis Rueden, Philipp Hanslovsky, Edward Evans',
author_email='ctrueden@wisc.edu',
description='scyjava',
long_description=scyjava_long_description,
long_description_content_type='text/markdown',
license='Public domain',
url='https://github.com/scijava/scyjava',
install_requires=['jpype1', 'jgo'],
)