forked from ebi-gene-expression-group/scanpy-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 865 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
34
35
36
from setuptools import setup, find_namespace_packages
from pathlib import Path
HERE = Path(__file__).parent
script_names = [
path.with_suffix("").name
for path in (HERE / 'scanpy_scripts').glob('scanpy_*.py')
]
scripts = [
f'{name.replace("_", "-")}=scanpy_scripts.{name}:main'
for name in script_names
]
setup(
name='scanpy-scripts',
version='1.0',
description='Scripts for using scanpy from the command line',
author='nh3',
#author_email='',
url='https://github.com/ebi-gene-expression-group/scanpy-scripts',
packages=find_namespace_packages(),
scripts=[
'scanpy-scripts-tests.sh',
'scanpy-scripts-tests.bats',
],
entry_points=dict(
console_scripts=scripts,
),
install_requires=[
'matplotlib',
'pandas',
'scanpy==1.3.2',
'louvain'
],
)