-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (28 loc) · 959 Bytes
/
Copy pathsetup.py
File metadata and controls
34 lines (28 loc) · 959 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
import io
import os
from setuptools import setup, find_packages
version = io.open('rubyenv/_version.py').readlines()[-1].split()[-1].strip('"\'')
setup(
name='rubyenv',
version=version,
description='manage ruby in your virtualenv',
long_description=io.open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
author='Tommy Wang',
author_email='twang@august8.net',
url='http://github.com/twang817/rubyenv',
download_url='https://github.com/twang817/rubyenv/tarball/{version}'.format(version=version),
packages=find_packages(),
install_requires=['gitpython', 'six', 'future'],
include_package_data=True,
entry_points={
'console_scripts': ['rubyenv = rubyenv:main'],
},
license='MIT',
platforms=['any'],
keywords='ruby virtualenv',
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
],
)