-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
89 lines (79 loc) · 2.35 KB
/
Copy pathsetup.py
File metadata and controls
89 lines (79 loc) · 2.35 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#!/usr/bin/env python
# coding: utf-8
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
from __future__ import print_function
from setuptools import setup, find_packages
from os.path import join as pjoin
from glob import glob
from jupyter_packaging import (
get_version,
)
from setuptools import setup
# The name of the project
name = 'nanohub-remote'
# Get our version
version = get_version(pjoin('nanohubremote', '_version.py'))
long_description = ""
with open("README.md", "r") as fh:
long_description = fh.read()
setup_args = {
'name' : name,
'description' : 'A set of tools to run nanohub web apis',
'long_description_content_type' : 'text/markdown',
'long_description':long_description,
'version' : version,
'scripts' : glob(pjoin('scripts', '*')),
'packages' : find_packages(),
'data_files' : [('assets', [
])],
'author' : 'Project Jupyter contributor',
'author_email' : 'denphi@denphi.com',
'url' : 'https://github.com/denphi/nanohub-remote',
'license' : 'BSD',
'platforms' : "Linux, Mac OS X, Windows",
'keywords' : ['IPython'],
'classifiers' : [
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Framework :: Jupyter',
],
'include_package_data' : True,
'install_requires' : [
'requests>=2.25.0',
'urllib3>=1.26.0',
'setuptools',
'fs>=2.4.0',
'numpy>=1.20.0',
'pint>=0.18',
'simtool',
],
'extras_require' : {
'test': [
'pytest>=7.0.0',
'pytest-cov>=4.0.0',
'pytest-mock>=3.10.0',
],
'dev': [
'pytest>=7.0.0',
'pytest-cov>=4.0.0',
'pytest-mock>=3.10.0',
'black>=23.0.0',
'flake8>=6.0.0',
'mypy>=1.0.0',
],
'examples': [
# Any requirements for the examples to run
],
'docs': [
'sphinx>=5.0.0',
'sphinx-rtd-theme>=1.0.0',
],
},
'entry_points' : {
},
}
setup(**setup_args)