Make setup.py actually work for release

This commit is contained in:
Ben Firshman 2013-12-20 21:35:00 +00:00
parent 23d6ae867d
commit 8998bd1adc
2 changed files with 9 additions and 2 deletions

3
MANIFEST.in Normal file
View File

@ -0,0 +1,3 @@
include LICENSE
include *.md
include requirements.txt

View File

@ -24,14 +24,18 @@ def find_version(*file_paths):
with open('requirements.txt') as f: with open('requirements.txt') as f:
install_requires = f.read().splitlines() install_requires = f.read().splitlines()
with open('README.md') as f:
long_description = f.read()
setup( setup(
name='fig', name='fig',
version=find_version("fig", "__init__.py"), version=find_version("fig", "__init__.py"),
description='', description='Punctual, lightweight development environments using Docker',
long_description=long_description,
url='https://github.com/orchardup/fig', url='https://github.com/orchardup/fig',
author='Orchard Laboratories Ltd.', author='Orchard Laboratories Ltd.',
author_email='hello@orchardup.com', author_email='hello@orchardup.com',
packages=['fig'], packages=['fig', 'fig.cli'],
package_data={}, package_data={},
include_package_data=True, include_package_data=True,
install_requires=install_requires, install_requires=install_requires,