File: setup.py

package info (click to toggle)
daps 3.3.2%2Bcleaned1-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,540 kB
  • sloc: xml: 9,773; sh: 3,059; python: 1,322; lisp: 380; makefile: 239
file content (37 lines) | stat: -rwxr-xr-x 1,200 bytes parent folder | download | duplicates (3)
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
#!/usr/bin/env python3

from setuptools import setup
import sys

sys.path.insert(0, "bin")

import getentityname as gen

setup(
    name="getentityname",
    version=gen.__version__,
    description="Returns all entities from one or more XML files",
    long_description=gen.__doc__,
    author=gen.__author__,
    author_email=gen.__author__.split(" ", 2)[1],
    url='https://github.com/tomschr/gententities',
    download_url='https://github.com/openSUSE/daps/releases',
    # py_modules=[package.__name__],
    include_package_data=True,
    classifiers=[
        'Environment :: Web Environment',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
        'Operating System :: OS Independent',
        'Programming Language :: Python',
        'Programming Language :: Python :: 3',
        'Programming Language :: Python :: 3.5',
        'Programming Language :: Python :: 3.6',
        'Programming Language :: Python :: 3.7',
        'Topic :: Utilities',
        'Topic :: Text Processing',
    ],
    setup_requires=['pytest-runner', ],
    tests_require=['pytest', 'virtualenv'],
    scripts=['bin/getentityname.py'],
)