Skip to content

Instantly share code, notes, and snippets.

@danverbraganza
Last active October 1, 2015 10:07
Show Gist options
  • Save danverbraganza/1971176 to your computer and use it in GitHub Desktop.
Save danverbraganza/1971176 to your computer and use it in GitHub Desktop.
Standard starting for a file.
from setuptools import setup, find_packages
setup(
name = 'Undefined',
version = '0.0.0',
author = 'Danver Braganza',
author_email = 'danverbraganza@gmail.com',
description = ('A description of my project goes here.'),
license = 'WTFPL',
# keywords = 'space separated',
# url = 'http://',
packages= find_packages(), # or ['package_one', 'test'],
# long_description= 'Some string',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Topic :: Utilities',
'Environment :: Console',
],
requires=(
'alibrary >= 0.0.0'
),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment