-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
59 lines (54 loc) · 1.46 KB
/
setup.py
File metadata and controls
59 lines (54 loc) · 1.46 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
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/python
import os
import setuptools
with open(os.path.join(os.path.dirname(__file__), "README.md"), "r") as fh:
long_description = fh.read()
NUMPY_MIN_VERSION = '1.8.2'
SCIPY_MIN_VERSION = '1.3.1'
PYQT_MIN_VERSION = '5.9.2'
MATPLOTLIB_MIN_VERSION = '3.1.1'
# PYTABLES_MIN_VERSION = '3.5.1'
setuptools.setup(
name="mipt-npm-optics",
version="0.0.2.dev2",
author="Mikhail Zelenyi",
author_email="mihail.zelenyy@phystech.edu",
url='http://npm.mipt.ru/',
description="Python scripts for optics lab",
license="MIT License",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="optics",
packages=setuptools.find_packages(),
entry_points = {
"console_scripts" : [
"mipt-optics = optics.main:main"
]
},
package_data = { "optics" : ["data/*.txt"]},
include_package_data = True,
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
# project_urls={
# "Bug Tracker": "",
# "Documentation": "",
# "Source Code": "",
# },
install_requires=[
'numpy',
'scipy',
'matplotlib',
"pyqt5",
"appdirs",
# diffractio
"diffractio",
"hickle",
"pandas",
"pillow"
# 'tables>={0}'.format(PYTABLES_MIN_VERSION),
]
# test_suite='tests'
)