-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
42 lines (39 loc) · 1.34 KB
/
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
33
34
35
36
37
38
39
40
41
42
import os
from setuptools import setup
version_txt = os.path.join(os.path.dirname(__file__), 'vimgolf', 'version.txt')
with open(version_txt, 'r') as f:
version = f.read().strip()
with open('README.md') as f:
long_description = f.read()
setup(
author='Daniel Steinberg',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Topic :: Text Editors',
'Topic :: Games/Entertainment',
],
description='A vimgolf client written in Python',
entry_points={
'console_scripts': ['vimgolf=vimgolf.vimgolf:main'],
},
keywords=['vim', 'vimgolf'],
license='MIT',
long_description=long_description,
long_description_content_type='text/markdown',
name='vimgolf',
package_data={'vimgolf': ['version.txt', 'vimgolf.vimrc']},
packages=['vimgolf'],
python_requires='>=3.5',
url='https://github.com/dstein64/vimgolf',
version=version,
)