forked from chriskuehl/fluffy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (32 loc) · 1.06 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
from setuptools import find_packages
from setuptools import setup
from fluffy import version
with open('requirements-minimal.txt') as f:
minimal_reqs = f.read().splitlines()
setup(
name='fluffy-server',
version=version,
author='Chris Kuehl',
author_email='[email protected]',
packages=find_packages(exclude=('test*', 'playground')),
include_package_data=True,
install_requires=minimal_reqs,
license='Apache License 2.0',
classifiers=(
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
),
entry_points={
'console_scripts': [
'fluffy-upload-assets = fluffy.component.assets:upload_assets',
],
},
extras_require={
# guesslang provides greatly improved language autodetection, but pulls
# in tensorflow which is a huge dependency.
'guesslang': ['guesslang'],
},
)