summaryrefslogtreecommitdiff
path: root/spec/fixtures/python/simple-setup.py
blob: 51b96a2af923958e2c34946236b18a0cc394ce51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python3
from setuptools import find_packages
from setuptools import setup

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",
)