-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (27 loc) · 883 Bytes
/
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
from typing import Union
from setuptools import setup, find_packages
from setuptools.command.develop import develop
from setuptools.command.install import install
from assnake_biobakery.snake_module_setup import snake_module
class PostDevelopCommand(develop):
"""Post-installation for development mode."""
def run(self):
snake_module.deploy_module()
develop.run(self)
class PostInstallCommand(install):
"""Post-installation for installation mode."""
def run(self):
snake_module.deploy_module()
install.run(self)
setup(
name='assnake-biobakery',
version='0.0.1',
packages=find_packages(),
entry_points = {
'assnake.plugins': ['assnake-biobakery = assnake_biobakery.snake_module_setup:snake_module']
},
cmdclass={
'develop': PostDevelopCommand,
'install': PostInstallCommand,
}
)