forked from phbradley/conga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (27 loc) · 841 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
37
from setuptools import setup #, find_packages
#from codecs import open
#from os import path
#here = path.abspath(path.dirname(__file__))
# Thanks to Neal Smith for getting me (Phil) started with this!
setup(
name='conga',
version='0.1',
author='Phil Bradley',
author_email= '[email protected]',
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Natural Language :: English',
],
install_requires=["scanpy", "leidenalg"],
packages=['conga','conga.tcrdist'],
#packages=find_packages(),
#entry_points={
# 'console_scripts': [
# 'sample=sample:main',
# ],
#},
)