summaryrefslogtreecommitdiff
path: root/spec/fixtures/python/simple-setup.py
blob: 02ee1c4e7d72f065fa909e581239e75edb0b9b5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python3
import os
import shutil

from setuptools import find_packages
from setuptools import setup

shutil.rmtree("build", ignore_errors=True)

setup(
    name="package name",
    version='1.1',
    packages=find_packages(),
    include_package_data=True,
    install_requires=[
        "boto3",
    ],
    author="author",
    author_email="author@author.com",
    description="All the stuff",
    url="https://www.author.com",
)