forked from ericdill/depfinder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 673 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (18 loc) · 673 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
import versioneer
required = open('requirements.txt').read().split('\n')
setup(
name='depfinder',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author='Eric Dill',
author_email='thedizzle@gmail.com',
packages=find_packages(exclude="test"),
description='Find all the imports in your library',
url='http://github.com/ericdill/depfinder',
platforms='Cross platform (Linux, Mac OSX, Windows)',
install_requires=required,
license='BSD 3-Clause',
entry_points={"console_scripts": ['depfinder = depfinder.cli:cli']},
package_data={'': ['pkg_data/*.yml']},
)