-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·58 lines (54 loc) · 1.58 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
53
54
55
56
57
58
#!/usr/bin/env python
# encoding: utf8
import setuptools
import os
here = os.path.dirname(os.path.abspath(__file__))
setup_args = dict(
name='fluentpy',
version='2.1.1',
description='Python wrapper for stdlib (and your) objects to give them a fluent interface.',
long_description=open(os.path.join(here, 'Readme.md')).read(),
long_description_content_type='text/markdown',
url='https://github.com/dwt/fluent',
project_urls={
'Documentation': 'https://fluentpy.readthedocs.io/',
},
author='Martin Häcker',
author_email='[email protected]',
license='ISC',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
'License :: OSI Approved :: ISC License (ISCL)',
'Programming Language :: Python :: 3',
],
keywords='wrapper,smalltalk,ruby,fluent,interface,functional',
packages=setuptools.find_packages(exclude=['*.tests']),
python_requires='>=3.6',
include_package_data=True,
test_suite="fluent_test.py",
tests_require=(
'pyexpect',
),
extras_require={
'dev': [
'twine',
],
'tests': [
'pyexpect',
'pytest',
'tox',
],
'docs': [
'sphinx >= 1.8.3',
'sphinx-rtd-theme >= 0.4.2',
'myst-parser',
'sphinx-autobuild',
],
},
)
if __name__ == '__main__':
setuptools.setup(**setup_args)