-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (30 loc) · 960 Bytes
/
setup.py
File metadata and controls
35 lines (30 loc) · 960 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
from setuptools import find_packages, setup
from pyenvapi import __version__
with open('README.rst', 'r') as rm:
long_description = rm.read()
setup(
name='pyenv-api',
version=__version__,
license='MIT',
author='Hector Ulacio',
author_email='hectorulacior@gmail.com',
description='A simple API for pyenv',
long_description=long_description,
long_description_content_type='text/x-rst',
url='https://github.com/ulacioh/pyenv-api',
packages=find_packages(),
keywords=[
'pyenv',
'version-management'
],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
]
)