-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 999 Bytes
/
setup.py
File metadata and controls
35 lines (31 loc) · 999 Bytes
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
import os
import sys
from funkymetrics import __version__
from setuptools import setup
def publish():
"""Publish to Pypi"""
os.system("python setup.py sdist upload")
if sys.argv[-1] == "publish":
publish()
sys.exit()
setup(
name='django-funkymetrics',
version=__version__,
description='Super simple Django application for easily tracking events and submitting them asynchronously to KISSmetrics.',
long_description=open('README.md').read(),
author='Funkbit',
author_email='post@funkbit.no',
url='https://github.com/funkbit/django-funkymetrics',
packages=['funkymetrics', ],
license='BSD',
classifiers=(
"Development Status :: 4 - Beta",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
)
)