-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 741 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (27 loc) · 741 Bytes
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
try:
long_description = open("README.md").read()
except IOError:
long_description = ""
setup(
name="elaugment",
version="0.1.0",
description="A lightweight data-augmentation library for machine learning",
license="MIT",
author="Tim Joseph",
url="https://github.com/Mctigger/elaugment",
packages=find_packages(),
install_requires=[
"numpy",
"scikit-image",
"scipy"
],
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
],
python_requires=">=3.6"
)