forked from AI-sandbox/neural-admixture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 1.2 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
from setuptools import find_packages, setup
setup(
name='neural-admixture',
version='0.5.0',
description='Population clustering with autoencoders',
url='https://github.com/AI-sandbox/neural-admixture',
author='Albert Dominguez Mantes',
author_email='[email protected]',
scripts=['./neural-admixture/neural-admixture'],
license='CC BY-NC 4.0',
packages=find_packages('neural-admixture/')+['.'],
package_dir={"": "neural-admixture"},
include_package_data=True,
install_requires=['codetiming==1.3.0',
'h5py==3.1.0',
'matplotlib==3.3.4',
'pandas==1.2.4',
'pandas_plink==2.2.9',
'scikit-allel==1.3.5',
'scikit-learn==0.24.1',
'setuptools==50.3.1',
'torch==1.7.1',
'wandb==0.10.21'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)