-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
50 lines (46 loc) · 1.49 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
44
45
46
47
48
49
50
# See license.txt for license details.
# Copyright (c) 2017 Chris Withers
import os
from setuptools import setup, find_packages
base_dir = os.path.dirname(__file__)
setup(
name='picky-pip',
version='2.0.0dev',
author='Chris Withers',
author_email='[email protected]',
license='MIT',
description=(
"A tool for checking versions of packages used by conda or pip "
"are as specified in their requirements files."
),
long_description=open(os.path.join(base_dir,'docs','description.rst')).read(),
url='https://github.com/Simplistix/picky-pip',
classifiers=[
# 'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
packages=find_packages(),
zip_safe=False,
include_package_data=True,
extras_require={
'test': [
'testfixtures',
'nose',
'nose_fixes',
'coveralls',
],
'build': ['sphinx', 'pkginfo', 'setuptools-git', 'twine', 'wheel']
},
entry_points = {
'console_scripts': [
'picky = picky.main:main',
]}
)