-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 941 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from os.path import exists
from setuptools import setup, find_packages
author = 'Matthias Baer'
email = '[email protected]'
description = 'A Python package to facilitate writing tests for a testless code base.'
name = 'postfix'
year = '2022'
url = 'https://github.com/matthias-baer/postfix'
version = '0.0.5'
setup(
name=name,
author=author,
author_email=email,
url=url,
version=version,
packages=find_packages(),
package_dir={name: name},
include_package_data=True,
license='MIT',
description=description,
long_description=open('README.md').read() if exists('README.md') else '',
long_description_content_type="text/markdown",
install_requires=[],
python_requires=">=3.6",
classifiers=['Operating System :: OS Independent',
'Programming Language :: Python :: 3',
],
platforms=['ALL'],
)