ソースを参照

Make setup.py actually work for release

Ben Firshman 12 年 前
コミット
8998bd1adc
2 ファイル変更9 行追加2 行削除
  1. 3 0
      MANIFEST.in
  2. 6 2
      setup.py

+ 3 - 0
MANIFEST.in

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

+ 6 - 2
setup.py

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