-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·48 lines (40 loc) · 1.33 KB
/
setup.py
File metadata and controls
executable file
·48 lines (40 loc) · 1.33 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
# Copyright 2019 Dirk Niggemann
#
# This file is part of PyGCMS.
#
from setuptools import setup
from glob import glob
import sys
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
# read in the version number
with open('pygcms/__init__.py') as f:
exec(f.read())
options = {
'name': 'PyGCMS',
'version': __version__,
'description': 'HP 5890/5971 GC/MS Control Program',
'author': 'Dirk Niggemann',
'author_email': 'dirk.niggemann@gmail.com',
'url': 'https://github.com/dirkenstein/pygcms',
'license': 'MIT',
'platforms': ['Any'],
'classifiers': [
'Development Status :: 3 - Alpha',
'Environment :: X11 Applications :: Qt',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Chemistry'
],
'long_description': read('README.rst'),
'packages': ['pygcms', 'pygcms.gui',
'pygcms.device', 'pygcms.msfile', 'pygcms.calc'],
'scripts': ['gcms.py','spec.py'],
'include_package_data': False,
'install_requires': ['numpy', 'scipy', 'matplotlib', 'peakutils','mollusk', 'pandas', 'rpyc', 'PyQt5', 'pyqt_led'],
}
#all the magic happens right here
setup(**options)