-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 879 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
from setuptools import setup, find_packages
setup(
name='stripping',
version='0.2.6',
description='An easy to use pipeline solution for AI/ML experiments',
author='Adriano Marques, Nathan Martins, Thales Ribeiro',
python_requires='>=3.7.0',
install_requires=['aurum', 'numpy'],
include_package_data=True,
license="GNU LGPLv3",
url='https://github.com/exponential-ventures/stripping',
packages=find_packages(exclude=['*tests*', 'test*']),
platforms=['any'],
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
],
)