MetaData Sharing
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

44 lines
1.1 KiB

  1. # python setup.py --dry-run --verbose install
  2. import os.path
  3. from setuptools import setup, find_packages
  4. from distutils.core import setup
  5. setup(
  6. name='medashare',
  7. version='0.1.0',
  8. author='John-Mark Gurney',
  9. author_email='jmg@funkthat.com',
  10. packages=find_packages(),
  11. #url='',
  12. license='BSD',
  13. description='File Metadata sharing, query and storing utility.',
  14. #download_url='',
  15. long_description=open('README.md').read(),
  16. python_requires='>=3.8',
  17. install_requires=[
  18. 'base58',
  19. 'cryptography',
  20. 'databases[sqlite]',
  21. 'fastapi',
  22. 'fastapi_restful',
  23. 'httpx',
  24. 'hypercorn', # option, for server only?
  25. 'orm',
  26. 'pasn1 @ git+https://www.funkthat.com/gitea/jmg/pasn1.git@c6c64510b42292557ace2b77272eb32cb647399d#egg=pasn1',
  27. 'file-magic @ git+https://github.com/file/file.git#egg=file-magic&subdirectory=python',
  28. 'pydantic[dotenv]',
  29. ],
  30. extras_require = {
  31. # requests needed for fastpi.testclient.TestClient
  32. 'dev': [ 'coverage', 'requests' ],
  33. },
  34. entry_points={
  35. 'console_scripts': [
  36. 'medashare = medashare.cli:main',
  37. ]
  38. }
  39. )