-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 770 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 770 Bytes
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
from setuptools import setup
setup(
name='deepDNAshape',
version='0.1.0',
description='Deep DNAshape',
url='',
author='Jinsen Li ',
author_email='jinsenli@usc.edu',
license='BSD 2-clause',
packages=['deepDNAshape'],
install_requires=['tensorflow>=2.6.0',
'numpy<1.24',
],
scripts=['bin/deepDNAshape'],
include_package_data=True,
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)