forked from evo-design/evo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (27 loc) · 800 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
from setuptools import setup, find_packages
with open('evo/version.py') as infile:
exec(infile.read())
with open('README.md') as f:
readme = f.read()
with open('requirements.txt') as f:
requirements = f.read().split('\n')
sources = {
'evo': 'evo',
'evo.scripts': 'scripts',
}
setup(
name='evo-model',
version=version,
description='DNA foundation modeling from molecular to genome scale.',
long_description=readme,
long_description_content_type='text/markdown',
author='Team Evo',
url='https://github.com/evo-design/evo',
license='Apache-2.0',
packages=sources.keys(),
package_data={'evo': ['evo/configs/*.yml']},
include_package_data=True,
package_dir=sources,
install_requires=requirements,
python_requires='>=3.6',
)