-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
28 lines (23 loc) · 926 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
longDescription = fh.read()
setup(
# >>>> SETUP <<<<
name = 'edm',
version = '0.0.4',
description = 'Tools for assessing the difficulty of datasets for machine learning models',
long_description = longDescription,
long_description_content_type = "text/markdown",
url = 'https://github.com/Wluper/edm',
# package_index = '',
author = 'Ed Collins',
author_email = '[email protected]',
license = 'GPL v2',
# >>>> Actual packages, data and scripts <<<<
packages = find_packages(),
# >>>> Requirements <<<<
install_requires= [
"numpy"
],
python_requires='~=3.3'
)