forked from SebiSebi/DataMine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (41 loc) · 1.79 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from setuptools import find_packages, setup
# Read repository information. This will be used as the package description.
LONG_DESCRIPTION = None
with open('README_PyPI.md', 'r', encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
assert(LONG_DESCRIPTION is not None)
with open('requirements.txt') as f:
REQUIREMENTS = f.read().splitlines()
setup(
name='data_mine',
version='0.0.11',
description='DataMine is a collection of datasets ready to be used for machine learning applications and not only.', # noqa: E501
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author='sebisebi',
author_email='[email protected]',
url='https://github.com/SebiSebi/DataMine',
license='Apache 2.0',
packages=find_packages(), # Anything with a __init__.py file.
include_package_data=True, # Includes the files in MANIFEST.in
install_requires=REQUIREMENTS,
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
keywords='machine learning datasets data collection',
classifiers=[
'Development Status :: 2 - Pre-Alpha', # TODO(sebisebi): change.
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries :: Python Modules',
],
zip_safe=False,
)