Skip to content
setup.py 2.45 KiB
Newer Older
Fabrice Salvaire's avatar
Fabrice Salvaire committed
#! /usr/bin/env python3
Fabrice Salvaire's avatar
Fabrice Salvaire committed

####################################################################################################
#
# PyValentina - A Python implementation of Valentina Pattern Drafting Software
Fabrice Salvaire's avatar
Fabrice Salvaire committed
# Copyright (C) 2017 Fabrice Salvaire
Fabrice Salvaire's avatar
Fabrice Salvaire committed
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
####################################################################################################

####################################################################################################

Fabrice Salvaire's avatar
Fabrice Salvaire committed
import glob
Fabrice Salvaire's avatar
Fabrice Salvaire committed
import sys

Fabrice Salvaire's avatar
Fabrice Salvaire committed
from setuptools import setup, find_packages
setuptools_available = True
Fabrice Salvaire's avatar
Fabrice Salvaire committed

####################################################################################################

if sys.version_info < (3,):
    print('PyValentina requires Python 3', file=sys.stderr)
    sys.exit(1)

exec(compile(open('setup_data.py').read(), 'setup_data.py', 'exec'))

####################################################################################################
Fabrice Salvaire's avatar
Fabrice Salvaire committed

setup_dict.update(dict(
    # include_package_data=True, # Look in MANIFEST.in
    packages=find_packages(exclude=['unit-test']),
    #scripts=glob.glob('bin/*'),
    # [
    #     'bin/...',
    # ],
    # package_data={
    # },

    platforms='any',
    zip_safe=False, # due to data files

    # cf. http://pypi.python.org/pypi?%3Aaction=list_classifiers
    classifiers=[
        'Topic :: Scientific/Engineering',
        'Intended Audience :: Education',
        'Development Status :: 5 - Production/Stable',
        'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
        'Operating System :: OS Independent',
        'Programming Language :: Python :: 3.5',
        ],

    install_requires=[
        'IntervalArithmetic',
        'astunparse',
        'lxml',
        'numpy',
    ],
))

Fabrice Salvaire's avatar
Fabrice Salvaire committed
####################################################################################################
Fabrice Salvaire's avatar
Fabrice Salvaire committed

setup(**setup_dict)