Skip to content

Commit

Permalink
Packaging using distutils
Browse files Browse the repository at this point in the history
  • Loading branch information
dahlia committed Aug 19, 2014
1 parent 0843ad6 commit 1493195
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@
__pycache__
.project
.pydevproject
build
dist
MANIFEST
25 changes: 25 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# -*- coding: utf-8 -*-
from distutils.core import setup


setup(
name='typeannotations',
version='1.0.0',
description='A library with a set of tools for annotating types '
'in Python code.',
url='https://github.com/ceronman/typeannotations',
author='Manuel Cerón',
author_email='ceronman' '@' 'gmail.com',
license='Apache License',
packages=['annotation'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)

0 comments on commit 1493195

Please sign in to comment.