File: setup.py

package info (click to toggle)
python-ms-cv 0.1.1-4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 96 kB
  • sloc: python: 93; makefile: 3
file content (41 lines) | stat: -rw-r--r-- 1,021 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import io
import os
import re

from setuptools import setup

with open("README.md", "r") as fh:
    long_description = fh.read()

setup(
    name="ms_cv",
    version="0.1.1",
    url="https://github.com/OpenXbox/ms_cv",
    license='MIT',

    author="OpenXbox",
    author_email="noreply@openxbox.org",

    description="A correlation vector implementation in python",
    long_description=long_description,
    long_description_content_type="text/markdown",

    packages=['ms_cv'],
    install_requires=[],
    setup_requires=['pytest-runner'],
    tests_require=[
        'pytest',
        'flake8'
    ],

    classifiers=[
        'Development Status :: 2 - Pre-Alpha',
        'License :: OSI Approved :: MIT License',
        'Programming Language :: Python',
        'Programming Language :: Python :: 3',
        'Programming Language :: Python :: 3.4',
        'Programming Language :: Python :: 3.5',
        'Programming Language :: Python :: 3.6',
        'Programming Language :: Python :: 3.7',
    ],
)