-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
57 lines (52 loc) · 1.61 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from setuptools import find_packages, setup
import os
README_PATH = os.path.join(os.path.dirname(__file__), "README.md")
with open(README_PATH, 'r') as f:
README = f.read()
setup(
name='nanome',
packages=find_packages(exclude=["testing", "doc", "test_plugins"]),
version='0.42.0',
license='MIT',
description='Python API for Nanome Plugins',
long_description=README,
long_description_content_type="text/markdown",
author='Nanome',
author_email='hello@nanome.ai',
url='https://github.com/nanome-ai/nanome',
platforms="any",
keywords=['virtual-reality', 'chemistry', 'python', 'api', 'plugin'],
install_requires=[
'tblib>=1.7.0',
'graypy>=2.1.0'
],
extras_require={
'schemas': [
'marshmallow>=3.18.0'
],
'beta': [
'redis>=4.1.3',
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Chemistry',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
entry_points={"console_scripts": [
"nanome-setup-plugins = nanome.setup_config:main",
"nanome-plugin-init = nanome.plugin_init:main"
]},
package_data={
"nanome": [
"_internal/process/external/dssp/*",
"plugin-template.zip",
"beta/nanome_sdk/logging_config.ini"
]
},
)