forked from thermofisherlsms/pyeds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (29 loc) · 962 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
# Created by Martin Strohalm, Thermo Fisher Scientific
from setuptools import setup, find_packages
# get version
from pyeds import version
version = '.'.join(str(x) for x in version)
# include additional files
package_data = {
'': ['*.css', '*.js']}
# set classifiers
classifiers = [
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3 :: Only',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering',
'Intended Audience :: Science/Research']
# main setup
setup(
name = 'pyeds',
version = version,
description = 'Provides easy access to Thermo Discoverer platform results.',
url = 'https://github.com/thermofisherlsms/pyeds',
author = 'Martin Strohalm, Thermo Fisher Scientific',
author_email = '',
license = 'MIT',
packages = find_packages(),
package_data = package_data,
classifiers = classifiers,
install_requires = ['numpy'],
zip_safe = False)