-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (32 loc) · 1.12 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
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
root_path = os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))
with open(os.path.join(root_path, 'README.rst')) as readme:
README = readme.read()
setup(
name='semver_range',
version='0.0.3',
author='Igor Ushkarev',
url='https://github.com/ushkarev/semver_range',
py_modules=['semver_range'],
license='MIT',
description='Python package that mimics npm’s “semver” package',
long_description=README,
keywords='semver,semantic versioning,semantic version range,versioning,version',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
tests_require=['flake8'],
test_suite='tests',
)