generated from FNNDSC/python-chrisapp-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 872 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
from setuptools import setup
setup(
name = 'bigfiles',
version = '1.0.0',
description = 'Create files of random data',
author = 'FNNDSC',
author_email = '[email protected]',
url = 'https://github.com/FNNDSC/dbg-bigfiles',
py_modules = ['bigfiles'],
install_requires = ['chris_plugin', 'tqdm'],
license = 'MIT',
python_requires = '>=3.10.2',
entry_points = {
'console_scripts': [
'bigfiles = bigfiles:main'
]
},
classifiers = [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Medical Science Apps.'
]
)