forked from pyenv/pyenv
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 1.31 KB
/
setup.py
File metadata and controls
35 lines (31 loc) · 1.31 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
from setuptools import setup, find_packages
from os import path
from io import open
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name="pyenv",
version="1.2.9",
description="pyenv lets you easily switch between multiple versions of Python. It's simple, unobtrusive, and follows the UNIX tradition of single-purpose tools that do one thing well.",
long_description = long_description,
long_description_content_type = 'text/markdown',
url = "https://github.com/pyenv/pyenv",
author = "Yamashita, Yuu",
author_email = "peek824545201@gmail.com",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Unix Shell',
'Topic :: Software Development :: Interpreters',
'Topic :: System :: Systems Administration',
'Topic :: Utilities',
],
packages = find_packages(exclude=['tests']),
package_data = {'pyenv': ['bin/*', 'completions/*', 'libexec/*', 'plugins/*', 'pyenv.d/*', 'src/*']},
)