Skip to content
Snippets Groups Projects
Select Git revision
  • 1d9ccecd9c681bee3599daf14f121450cde240c4
  • master default protected
  • bugfix/fix-return-var-in-find
  • feature/upgrade2
  • v1.10.0
  • v1.8.2
  • v1.8.1
  • v1.8.0
  • 1.7.3
  • v1.7.1
  • v1.6.1
  • v1.6.0
  • v1.5.0
  • v1.4.1
  • v1.3.0
  • v1.2.2
  • v1.2.1
  • v1.2.0
  • v1.0.1
  • v1.0.0
  • v0.0.23
  • v0.0.17
  • v0.0.10
  • v0.0.9
24 results

setup.py

Blame
  • setup.py 991 B
    import os
    import pathlib
    
    from setuptools import setup, find_packages
    
    here = pathlib.Path(__file__).parent.resolve()
    
    long_description = (here / 'README.md').read_text(encoding='utf-8')
    
    
    def load_requirements():
        return open(os.path.join(os.path.dirname(__file__), 'requirements.txt')).readlines()
    
    
    setup(
        name='perxis',
        version='1.6.1',
        description='Perxis python client',
        long_description=long_description,
        long_description_content_type='text/markdown',
        url='https://git.perx.ru/perxis/perxis-python/',
        author='Eterevskiy Georgiy',
        author_email='eterevskiy@perx.ru',
        classifiers=[
            'Development Status :: 3 - Alpha',
            'Intended Audience :: Developers',
            'Topic :: Software Development :: Build Tools',
            'License :: OSI Approved :: MIT License',
            'Programming Language :: Python :: 3.11 :: Only',
        ],
        packages=find_packages(),
        python_requires='>=3.11, <4',
        install_requires=load_requirements(),
    
    )