-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
25 lines (20 loc) · 903 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
from setuptools import setup
setup(
name='nionswift_elabftw_plugin',
version='0.1.2.4',
description='A simple plugin to allow users to manage their ElabFTW experiments metadata through Nionswift.',
long_description='',
author='Sherjeel Shabih',
author_email='[email protected]',
license='GNU General Public License v3.0',
url='https://github.com/shabihsherjeel/nionswift_elabftw_plugin',
download_url = 'https://github.com/shabihsherjeel/nionswift_elabftw_plugin/archive/v0.1.2.4-alpha.tar.gz',
keywords = ['NIONSWIFT', 'ELABFTW','ELN', 'PLUGIN'],
packages=['nionswift_plugin.nionswift_elabftw_plugin'],
install_requires=['elabapy','cryptography', 'nionutils', 'nionui', 'nionswift'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
],
)