-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 1.13 KB
/
setup.py
File metadata and controls
31 lines (30 loc) · 1.13 KB
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
from setuptools import setup, find_packages
setup(
name='deepcleaner',
version='0.1.0',
author='Alex Ing',
author_email='alexing142@gmail.com',
description='A tensorflow/keras package for removing negative effects of confounds/covariates of no interest',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/alexjamesing/Deep-Learning-Confound-Removal', # Replace with the URL to your repo
packages=find_packages(),
package_data={
# Include any package containing *.csv files
'deepcleaner': ['data/*.csv'],
},
include_package_data=True,
install_requires=[
'tensorflow',
'pandas',
'setuptools', # setuptools is required for pkg_resources
],
classifiers=[
# Trove classifiers
# Full list: https://pypi.org/classifiers/
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License', # Change the license as needed
'Operating System :: OS Independent',
],
python_requires='>=3.6', # Minimum version requirement of the package
)