summarylogtreecommitdiffstats
path: root/setup.py
blob: 633b0314fd869122fdd5991ab53c7ed8322e332e (plain)
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
42
43
44
45
46
47
48
49
50
51
52
53
from setuptools import setup, find_packages

setup(name='Ninja-IDE',
      version='2.4+dev',
      description='Cross-platform IDE focused on Python application development',
      author='The Ninja IDE Developers',
      url='http://ninja-ide.org',
      download_url='https://github.com/ninja-ide/ninja-ide',
      license='GPLv3+',
      package_data={ 'ninja_ide': [ 'extensions/styles/*',
                                    'extensions/syntax/*.json',
                                    'extensions/theme/qss/*',
                                    'extensions/theme/*',
                                    'gui/qml/*',
                                    'gui/qml/img/*',
                                    'gui/qml/widgets/*',
                                    'gui/editor/syntaxes/*',
                                    'images/*',
                                    'images/help/*',
                                    'images/stylesheet/*',
                                    'fonts/*',
                                    'nresources.qrc' ]},
      packages=find_packages(exclude=['ninja_profiling', 'ninja_tests', 'ninja_tests.*']),
      python_requires='>=3.7',
      install_requires=['pyqt5', 'pycodestyle', 'pyflakes', 'jedi'],
      extras_require={'tests': ['pytest', 'pytest-qt']},
      #entry_points={'console_scripts':['ninja-ide=ninja_ide.__init__:setup_and_run']},
      #scripts=["ninja-ide.py"],
      #include_package_data=False,
      #long_description=,
      #long_description_content_type=text/plain,
      zip_safe=False,
      classifiers=[
        'Development Status :: 3 - Alpha',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
        'Operating System :: OS Independent',
        'Programming Language :: Python',
        'Programming Language :: Python :: 3',
        'Programming Language :: Python :: 3.7',
        'Programming Language :: Python :: 3.8',
        'Programming Language :: Python :: 3.9',
        'Programming Language :: Python :: 3 :: Only',
        'Topic :: Software Development',
        'Topic :: Text Editors',
        'Topic :: Text Editors :: Integrated Development Environments (IDE)',
        ],
      project_urls={
        'Bug Reports': 'https://github.com/ninja-ide/ninja-ide/issues',
        'Sourcecode': 'https://github.com/ninja-ide/ninja-ide',
        'Donations': 'https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8TESZPNRD59H6',
        'Flattr': 'https://button.flattr.com/flattr/T1gcadsvoNbmRMQHL4xPIVKnuJLkWephrcCdTfmySQ8%7Cuxo2PSTXxruOKExXGGt_IjdY-WOfiu4OG1P5zehE2_Y%7CQHSnMfEto2NAuneuPPhKdDW_D9Rjx0qfLlJfFiBcvkBvrLcR2Hra5cAY22-I6azaUP-sbIWpPMAjLmJbk6LQXrQQQ6DhmxTg2-7Dsyjyhgfatj6OuBEB09F9-0htyFOd',
      },)