Skip to content

Commit 53b6fdb

Browse files
committed
Added setup.py
1 parent 3282e06 commit 53b6fdb

3 files changed

Lines changed: 26 additions & 0 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
*.pyo
33
*.egg-info
44
.DS_Store
5+
dist

setup.py

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import os
2+
from setuptools import setup
3+
4+
readme = open(os.path.join(os.path.dirname(__file__), 'README'), 'r').read()
5+
6+
setup(
7+
name='virtualenv-tools',
8+
author='Fireteam Ltd.',
9+
author_email='support@fireteam.net',
10+
version='1.0',
11+
url='http://github.com/fireteam/virtualenv-tools',
12+
py_modules=['virtualenv_tools'],
13+
description='A set of tools for virtualenv',
14+
long_description=readme,
15+
entry_points={
16+
'console_scripts': [
17+
'virtualenv-tools = virtualenv_tools:main'
18+
]
19+
},
20+
zip_safe=False,
21+
classifiers=[
22+
'License :: OSI Approved :: BSD License',
23+
'Programming Language :: Python'
24+
]
25+
)
File renamed without changes.

0 commit comments

Comments
 (0)