diff options
| author | Sebastian Thiel <byronimo@gmail.com> | 2014-11-13 19:49:40 +0100 |
|---|---|---|
| committer | Sebastian Thiel <byronimo@gmail.com> | 2014-11-13 19:49:40 +0100 |
| commit | 7fd369c8549a975efd74c312aa91194b4569b99e (patch) | |
| tree | cb7f7a6f7d5321ccdbf85fd42671ca5cd4d5b043 /setup.py | |
| parent | 8ae4e9579a263684c6b760aec2869be480ff22ba (diff) | |
| download | gitdb-7fd369c8549a975efd74c312aa91194b4569b99e.tar.gz | |
setup.py works now, and binary python module can now be loaded as well.
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -83,12 +83,12 @@ setup(cmdclass={'build_ext':build_ext_nofail}, author = __author__, author_email = __contact__, url = __homepage__, - packages = ('gitdb', 'gitdb.db'), + packages = ('gitdb', 'gitdb.db', 'gitdb.utils'), package_dir = {'gitdb':'gitdb'}, ext_modules=[Extension('gitdb._perf', ['gitdb/_fun.c', 'gitdb/_delta_apply.c'], include_dirs=['gitdb'])], license = "BSD License", zip_safe=False, - requires=('smmap (>=0.8.3)'), + requires=('smmap (>=0.8.3)', ), install_requires=('smmap >= 0.8.0'), long_description = """GitDB is a pure-Python git object database""", # See https://pypi.python.org/pypi?%3Aaction=list_classifiers |
