-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (20 loc) · 814 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Tue May 28 13:14:54 2024
@author: 4vt
"""
import setuptools
setuptools.setup(name="lipoCLEAN",
version="0.1.5",
url="https://github.com/stavis1/lipoCLEAN",
author="Steven Tavis",
author_email="[email protected]",
package_dir={"": "src"},
packages=setuptools.find_namespace_packages(where="src"),
include_package_data=True,
license_files=['LICENSE'],
classifiers=['License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.11'],
python_requires='==3.11.9')