Switch to 'find_package' method in setup.
This commit is contained in:
parent
66fc618149
commit
9e02ab0db2
4
setup.py
4
setup.py
@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
from distutils.core import setup
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
setup(name='papers',
|
setup(name='papers',
|
||||||
version='1',
|
version='1',
|
||||||
@ -9,6 +9,6 @@ setup(name='papers',
|
|||||||
url='',
|
url='',
|
||||||
description='research papers manager',
|
description='research papers manager',
|
||||||
requires=['pybtex'],
|
requires=['pybtex'],
|
||||||
packages = ['papers', 'papers.commands'],
|
packages=find_packages(),
|
||||||
scripts=['papers/papers']
|
scripts=['papers/papers']
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user