-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 748 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 748 Bytes
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
import setuptools
__version__ = '0.0.1'
setuptools.setup(
name='simion',
version=__version__,
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: MIT',
'Operating System :: Unix',
'Intended Audience :: Science/Research',
],
packages=setuptools.find_packages(),
package_data={
'simion': ['data/*'],
},
# metadata to display on PyPI
author='Thomas Maynadié',
author_email='maynadie.t@gmail.com',
description='SIMION Helper python package',
license='MIT',
)