-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 699 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 699 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Use setuptools to install the package
from setuptools import setup, find_packages
setup(
name='dpplgngr',
packages=find_packages(),
version='0.3.25',
description='Deep-learning automated twinning',
author='Sean Benson',
license='MIT',
author_email='s.h.benson@amsterdamumc.nl', # Add your email
url='https://github.com/tevien/Doppelganger', # Add your GitHub repo URL
install_requires=[], # Add your dependencies here
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
python_requires='>=3.9',
)