-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (49 loc) · 1.92 KB
/
setup.py
File metadata and controls
56 lines (49 loc) · 1.92 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
'''
PasteScript template for initializing a Python project.
Provides default configuration for bootstrap, py.test, setuptools and travis-ci.
Copyright 2014, Konstantin Tretyakov.
Licensed under MIT.
'''
import sys
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
# This is a plug-in for setuptools that will invoke py.test
# when you run python setup.py test
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
import pytest # import here, because outside the required eggs aren't loaded yet
sys.exit(pytest.main(self.test_args))
version = '1.0.1'
setup(name='python_boilerplate_template',
version=version,
description="PasteScript template for initializing a new buildout/pytest/travis/setuptools-enabled Python project",
long_description=open("README.rst").read(),
classifiers=[ # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Framework :: Paste',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development',
'Environment :: Plugins',
],
keywords='pastescript template package', # Separate with spaces
author='Konstantin Tretyakov',
author_email='kt@ut.ee',
url='http://kt.era.ee/',
license='MIT',
packages=find_packages(exclude=['examples', 'tests']),
include_package_data=True,
zip_safe=False,
tests_require=['pytest'],
cmdclass={'test': PyTest},
install_requires=['PasteScript', 'Paste'],
entry_points={
'paste.paster_create_template':
'python_boilerplate = python_boilerplate_template:PythonBoilerplateTemplate'
}
)