|
| 1 | +#!/usr/bin/python |
| 2 | +# -*- coding: utf-8 -*- |
| 3 | + |
| 4 | +import os |
| 5 | +import sys |
| 6 | +import shutil |
| 7 | + |
| 8 | +try: |
| 9 | + from setuptools import setup |
| 10 | +except ImportError: |
| 11 | + from distutils.core import setup |
| 12 | + |
| 13 | +packages = [ |
| 14 | + 'pyandrozoo' |
| 15 | +] |
| 16 | + |
| 17 | +scripts = [ |
| 18 | +] |
| 19 | + |
| 20 | +requires = ['requests'] |
| 21 | + |
| 22 | +with open('README.rst', 'r') as f: |
| 23 | + readme = f.read() |
| 24 | +with open('CHANGELOG.rst', 'r') as f: |
| 25 | + changelog = f.read() |
| 26 | + |
| 27 | +setup( |
| 28 | + name='pyAndroZoo', |
| 29 | + version='0.1', |
| 30 | + author='Cédric Bonhomme', |
| 31 | + |
| 32 | + packages=packages, |
| 33 | + include_package_data=True, |
| 34 | + scripts=scripts, |
| 35 | + url='https://github.com/ICC-analysis/pyAndroZoo', |
| 36 | + description='Client to access the AndroZoo data set.', |
| 37 | + long_description=readme + '\n|\n\n' + changelog, |
| 38 | + platforms = ['Linux'], |
| 39 | + license='GPLv3', |
| 40 | + install_requires=requires, |
| 41 | + zip_safe=False, |
| 42 | + classifiers=[ |
| 43 | + 'Development Status :: 5 - Production/Stable', |
| 44 | + 'Environment :: Console', |
| 45 | + 'Intended Audience :: Developers', |
| 46 | + 'Intended Audience :: Science/Research', |
| 47 | + 'Topic :: Security', |
| 48 | + 'Operating System :: OS Independent', |
| 49 | + 'Programming Language :: Python :: 3.5', |
| 50 | + 'Programming Language :: Python :: 3.6', |
| 51 | + 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)' |
| 52 | + ] |
| 53 | +) |
0 commit comments