forked from heynemann/skink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 1 KB
/
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
from setuptools import setup, find_packages
import sys, os
version = '0.1'
setup(name='skink',
version=version,
description="skink is a Continuous Integration server in python",
long_description="""\
skink is a Continuous Integration server in python.
For reference to what a skink is check http://www.wildherps.com/species/E.skiltonianus.html""",
classifiers=["Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved",
"Natural Language :: English",
"Programming Language :: Python :: 2.5",], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='Continuous Integration CI python',
author='Bernardo Heynemann',
author_email='[email protected]',
url='http://www.skinkci.org',
license='OSI',
packages=["skink",],
include_package_data=True,
zip_safe=True,
install_requires=[],
entry_points="""
# -*- Entry points: -*-
""",
)