forked from bninja/virtualenv-relocate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 945 Bytes
/
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
30
31
32
import re
import setuptools
setuptools.setup(
name='virtualenv-relocate',
version=(
re
.compile(r".*__version__ = '(.*?)'", re.S)
.match(open('virtualenv-relocate').read())
.group(1)
),
url='https://github.com/bninja/virtualenv-relocate',
license='BSD',
author='noone',
author_email='[email protected]',
description='https://github.com/pypa/virtualenv/issues/558',
long_description=open('README.rst').read(),
platforms='any',
install_requires=[],
extras_require={},
tests_require=[],
scripts=['virtualenv-relocate'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)