-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
33 lines (28 loc) · 907 Bytes
/
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
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='ckuehl@ckuehl.me',
packages=find_packages(exclude=('test*',)),
include_package_data=True,
install_requires=minimal_reqs,
license='Apache License 2.0',
long_description_content_type='text/markdown',
classifiers=(
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
),
python_requires='>=3.10',
entry_points={
'console_scripts': [
'fluffy-upload-assets = fluffy.component.assets:upload_assets',
],
},
)