-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (33 loc) · 977 Bytes
/
setup.py
File metadata and controls
45 lines (33 loc) · 977 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
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python
PROJECT = 'testtemplate'
VERSION = '1.0'
from setuptools import setup, find_packages
setup(
name=PROJECT,
version=VERSION,
description='template for testing mkproject',
author='Doug Hellmann',
author_email='doug.hellmann@gmail.com',
url='http://www.doughellmann.com/projects/virtualenvwrapper/',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Environment :: Console',
],
platforms=['Any'],
provides=['testtemplate',
],
requires=['virtualenv',
'virtualenvwrapper (>=2.9)',
],
packages=find_packages(),
include_package_data=True,
entry_points={
'virtualenvwrapper.project.template': [
'test = mytemplates.main:template',
],
},
zip_safe=False,
)