-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
43 lines (38 loc) · 1.4 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
41
42
43
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
with open('README.md', 'r') as f:
long_description = f.read()
config = {
'name': 'ramkit', # Required
'version': '0.2.0', # Required
'description': 'An analysis kernel for raman spectrum.', # Required
'long_description': long_description,
'long_description_content_type': 'text/markdown',
'author': 'Nie Mingzhao',
'author_email': '1432440963@qq.com',
'url': 'https://github.com/niemingzhao/ramkit',
'download_url': 'https://github.com/niemingzhao/ramkit/archive/master.zip',
'keywords': 'raman spectrum spectroscopy algorithm',
'platforms': 'any',
'license': 'MIT',
'classifiers': [
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Physics'
],
'packages': find_packages(exclude=['tests']), # Required
'include_package_data': True,
'python_requires': '~=3.8',
'install_requires': ['numpy',
'sympy',
'scipy',
'pandas',
'matplotlib',
'scikit-learn']
}
setup(**config)