~dricottone/filters

ref: 7b51a036bbb61fbe5c6a0467742a87b09f306732 filters/setup.py -rw-r--r-- 594 bytes
7b51a036Dominic Ricottone Refactored into package, to use gap argument parser; Remade build system 4 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python3

from setuptools import setup

long_description = None
with open('README.md', encoding='utf-8') as f:
    long_description = f.read()

setup(
    name="filter",
    packages=["filter"],
    version="1.0.0",
    license="GPL",
    description="Data filters",
    long_description=long_description,
    long_description_content_type='text/markdown',
    author="Dominic Ricottone",
    author_email="me@dominic-ricottone.com",
    url="git.dominic-ricottone.com/gap",
    entry_points={"console_scripts": ["filter = filter.__main__:main"]},
    python_requires=">=3.6",
)