summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 40b63c061bd05e4dae908fdd494af317cb32b40e (plain)
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
#!/usr/bin/env python
# setup.py generated by flit for tools that don't yet use PEP 517

from distutils.core import setup

packages = \
['pydyf']

package_data = \
{'': ['*']}

extras_require = \
{'doc': ['sphinx', 'sphinx_rtd_theme'],
 'test': ['pytest',
          'pytest-cov',
          'pytest-flake8',
          'pytest-isort',
          'coverage[toml]',
          'pillow']}

setup(name='pydyf',
      version='0.1.2',
      description='A low-level PDF generator.',
      author=None,
      author_email='CourtBouillon <contact@courtbouillon.org>',
      url=None,
      packages=packages,
      package_data=package_data,
      extras_require=extras_require,
      python_requires='>=3.6',
     )