forked from IanLee1521/utilities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·31 lines (28 loc) · 884 Bytes
/
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
#! /usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='utilities',
version='0.1',
description='Utilities for common development tasks',
author='Ian Lee',
author_email='[email protected]',
license='MIT License',
packages=['utilities'],
entry_points={
'console_scripts': [
'find_duplicates = utilities.find_duplicates:main',
],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)