|
1 | 1 | from distutils.core import setup
|
2 | 2 |
|
| 3 | +with open('README.md') as f: |
| 4 | + long_description = f.read() |
| 5 | + |
3 | 6 | setup(
|
4 | 7 | name='blobstash-docstore',
|
5 | 8 | version='0.0.1',
|
6 | 9 | description='BlobStash DocStore client',
|
| 10 | + long_description=long_description, |
7 | 11 | author='Thomas Sileo',
|
8 | 12 | author_email='t@a4.io',
|
9 | 13 | url='https://github.com/tsileo/blobstash-python-docstore',
|
10 | 14 | packages=['blobstash.docstore'],
|
11 | 15 | license='MIT',
|
12 | 16 | install_requires=[
|
13 |
| - 'blobstash-base', |
14 |
| - 'blobstash-filetree', |
| 17 | + 'blobstash-base==0.0.3', |
| 18 | + 'blobstash-filetree==0.0.2', |
15 | 19 | 'requests',
|
16 | 20 | 'jsonpatch',
|
17 | 21 | ],
|
| 22 | + python_requires='>=3.4', |
| 23 | + classifiers=[ |
| 24 | + 'Development Status :: 3 - Alpha', |
| 25 | + |
| 26 | + 'Intended Audience :: Developers', |
| 27 | + |
| 28 | + 'License :: OSI Approved :: MIT License', |
| 29 | + |
| 30 | + 'Programming Language :: Python :: 3', |
| 31 | + 'Programming Language :: Python :: 3.4', |
| 32 | + 'Programming Language :: Python :: 3.5', |
| 33 | + 'Programming Language :: Python :: 3.6', |
| 34 | + ], |
| 35 | + keywords='blobstash DocStore client JSON Lua document store', |
18 | 36 | )
|
0 commit comments