-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathsetup.py
More file actions
59 lines (53 loc) · 1.65 KB
/
Copy pathsetup.py
File metadata and controls
59 lines (53 loc) · 1.65 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
"""Setup for the skift package."""
# !/usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
import versioneer
INSTALL_REQUIRES = [
'numpy',
'scipy',
'scikit-learn',
'fasttext',
]
TEST_REQUIRES = [
# testing and coverage
'pytest', 'coverage', 'pytest-cov',
# unmandatory dependencies of the package itself
'pandas', 'lime',
# to be able to run `python setup.py checkdocs`
'collective.checkdocs', 'pygments',
]
with open('README.rst') as f:
README = f.read()
setuptools.setup(
author="Shay Palachy",
author_email="shay.palachy@gmail.com",
name='skift',
license="MIT",
description='scikit-learn wrappers for Python fastText',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
long_description=README,
url='https://github.com/shaypal5/skift',
packages=setuptools.find_packages(),
include_package_data=True,
python_requires=">=3.5",
install_requires=INSTALL_REQUIRES,
extras_require={
'test': TEST_REQUIRES + INSTALL_REQUIRES,
},
classifiers=[
# Trove classifiers
# (https://pypi.python.org/pypi?%3Aaction=list_classifiers)
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
],
)