-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (38 loc) · 1.27 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
43
from distutils.core import setup
from setuptools import find_packages
KEYWORDS = ['versioning', 'version control', 'semantic versioning']
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Version Control :: Git',
]
#
# DO NOT DELETE THIS COMMENT OR CODE
with open('__version__', 'r') as f:
version = f.read().strip()
setup(
name='sempylver',
version=version,
description='A simple tool for tracking the semantic version of projects',
author='Jeff Cochran',
author_email='[email protected]',
packages=find_packages(),
entry_points={
'console_scripts': [
'sempylver = sempylver.__main__:main'
]
},
include_package_data=True,
install_requires=[
'pyyaml',
],
url='https://github.com/jeffrey-cochran/sempylver',
download_url='https://github.com/jeffrey-cochran/sempylver/archive/%s.tar.gz' % version,
keywords=KEYWORDS,
classifiers=CLASSIFIERS
)