~dricottone/neopaste

ref: e26ade8ebc595247ef47e7616f2abd6aa2fafb09 neopaste/setup.py -rw-r--r-- 665 bytes
e26ade8eDominic Ricottone Initial commit 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
24
#!/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="neopaste",
    packages=["neopaste"],
    version="1.0.0",
    license="GPL",
    description="Paste file streams side-by-side",
    long_description=long_description,
    long_description_content_type='text/markdown',
    author="Dominic Ricottone",
    author_email="me@dominic-ricottone.com",
    url="git.dominic-ricottone.com/neopaste",
    entry_points={"console_scripts": ["npaste = neopaste.__main__:main"]},
    install_requires=["wcwidth>=0.2.4"],
    python_requires=">=3.6",
)