-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 1.11 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
import os
import subprocess
from setuptools import setup, find_packages
from setuptools.command.install import install
class CustomInstallCommand(install):
"""Customized setuptools install command to run initialize script after install."""
def run(self):
install.run(self)
subprocess.run(['./initialize.sh'])
setup(
name='seacon',
version='1.1.0',
author='Samson Weiner',
author_email='[email protected]',
description='SEACON (Single-cell Estimation of Allele-specific COpy Numbers) is a tool for allele-specific copy number profiling from single-cell DNA-sequencing data..',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/NabaviLab/SEACON',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent'
],
packages=find_packages(),
entry_points={
'console_scripts': [
'seacon=seacon.core:main',
],
},
cmdclass={
'install': CustomInstallCommand,
}
)