-
Notifications
You must be signed in to change notification settings - Fork 79
/
setup.py
52 lines (42 loc) · 1.6 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
46
47
48
49
50
51
52
import os
from setuptools import setup
def package_files(directory):
paths = []
for (path, directories, filenames) in os.walk(directory):
for filename in filenames:
paths.append(os.path.join('..', path, filename))
return paths
def required(requirements_file):
""" Read requirements file and remove comments and empty lines. """
with open(os.path.join(os.path.dirname(__file__), requirements_file),
'r') as f:
requirements = f.read().splitlines()
return [pkg for pkg in requirements
if pkg.strip() and not pkg.startswith("#")]
extra_files = package_files('lingua_franca')
with open("readme.md", "r") as fh:
long_description = fh.read()
setup(
name='lingua_franca',
version='0.4.3',
packages=['lingua_franca', 'lingua_franca.lang'],
url='https://github.com/MycroftAI/lingua-franca',
license='Apache2.0',
package_data={'': extra_files},
include_package_data=True,
install_requires=required('requirements.txt'),
author='Mycroft AI',
author_email='dev@mycroft.ai',
description='Mycroft\'s multilingual text parsing and formatting library',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Text Processing :: Linguistic',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)