Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
24 lines (21 loc) · 843 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (21 loc) · 843 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
#!/usr/bin/env python
fromsetuptools.dependsimportget_module_constant
fromsetuptoolsimportsetup
withopen("README.md", "r") asfh:
long_description=fh.read()
setup(
name='detectlanguage',
packages= ['detectlanguage'],
version=get_module_constant('detectlanguage', '__version__'),
description='Language Detection API Client',
long_description=long_description,
long_description_content_type="text/markdown",
author='Laurynas Butkus',
author_email='info@detectlanguage.com',
url='https://github.com/detectlanguage/detectlanguage-python',
download_url='https://github.com/detectlanguage/detectlanguage-python',
keywords= ['language', 'identification', 'detection', 'api', 'client'],
install_requires= ['requests>=2.4.2'],
classifiers= [],
license='MIT',
)