-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (43 loc) · 1.29 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 setup, find_packages
setup(
name='xpolyglot',
version='0.1',
description=(
'xpolyglot is a simple web-service that detects programming '
'language of code snippets.'
),
license='MIT',
url='https://github.com/xsnippet/xpolyglot/',
keywords='web-service restful-api snippet machine-learning',
author='The XSnippet Team',
author_email='[email protected]',
packages=find_packages(exclude=['docs', 'tests*']),
include_package_data=True,
zip_safe=False,
setup_requires=[
'pytest-runner',
],
install_requires=[
'falcon',
'numpy == 1.13.1',
'scikit-learn == 0.18.2',
'scipy == 0.19.1',
],
tests_require=[
'gunicorn',
'pytest >= 2.8.7',
'requests',
],
classifiers=[
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Information Technology',
'Topic :: Internet :: WWW/HTTP',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)