-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·41 lines (36 loc) · 1.21 KB
/
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
35
36
37
38
39
40
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
import versioneer
versioneer.VCS = 'git'
versioneer.versionfile_source = 'src/speview/_version.py'
versioneer.tag_prefix = '' # tags are like 1.2.0
versioneer.parentdir_prefix = 'speview-' # dirname like 'myproject-1.2.0'
setup(
name='speview',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author='Roman Kiselev',
author_email='[email protected]',
packages=["speview"],
package_dir={"speview": "src/speview"},
scripts=['src/speviewer'],
url='https://github.com/ximeg/speview',
license='LICENSE.txt',
description='Program to display binary SPE files containing Raman spectra',
long_description=open('README.md').read(),
install_requires=[
"numpy",
"matplotlib",
"scipy>=0.11.0",
"xcal-raman>=0.1.5",
"PyZenity>=0.1.4"
],
classifiers=[
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Chemistry",
"Development Status :: 4 - Beta",
"Topic :: Multimedia :: Graphics :: Viewers",
"Topic :: Scientific/Engineering :: Information Analysis"
]
)