-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·35 lines (31 loc) · 850 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
34
35
#! /usr/bin/env python
"""
Distutils setup file for codesnips
"""
from setuptools import setup, find_packages
from codesnips import __version__
setup(
name='django-codesnips',
version=__version__,
packages=find_packages(),
# Metadata
author='',
author_email='opensource(at)packetperception.org',
description='Django code snippets',
long_description="""
Snippets of code that are useful with Django.
""",
license='MIT',
url='https://github.com/PacketPerception/django-codesnips',
keywords='Django',
classifiers=[
'Programming Language :: Python',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Framework :: Django',
],
install_requires=[
'django>=1.6',
],
)