Skip to content

Commit

Permalink
fix setup.py for pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
tata-antares committed Sep 1, 2015
1 parent 076b660 commit 7e35c68
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 15 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
@@ -1,3 +1,4 @@
include requirements.txt
include AUTHORS
include README.md
include LICENSE
27 changes: 12 additions & 15 deletions setup.py
@@ -1,4 +1,4 @@
from setuptools import setup, find_packages
from setuptools import setup
import codecs
import os
import re
Expand Down Expand Up @@ -33,8 +33,8 @@ def find_version(*file_paths):
setup(
name="rep",
version=find_version('rep', '__init__.py'),
description="infrastructure for computational experiments on shared big datasets",
long_description="""Reproducible Experiment Platform is a collaborative software infrastructure for computational experiments on shared big datasets, which allows obtaining reproducible, repeatable results and consistent comparisons of the obtained results.""",
description="infrastructure for collaborative computational experiments on data",
long_description="""Reproducible Experiment Platform is a collaborative software infrastructure for computational experiments on data, which allows obtaining reproducible, repeatable results and consistent comparison of the obtained results.""",
url='https://github.com/yandex/rep',

# Author details
Expand All @@ -46,40 +46,37 @@ def find_version(*file_paths):
packages=['rep', 'rep.estimators', 'rep.data', 'rep.metaml', 'rep.report', 'rep.test'],
package_dir={'rep': 'rep'},
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',

# Indicate who your project is intended for
'Intended Audience :: Computational Researchers, students, teachers, data scientists',
'Topic :: Machine Learning :: Computational Experiment',
'Intended Audience :: Science/Research',

# Pick your license as you wish (should match "license" above)
'License :: Apache-2.0 License',
'License :: OSI Approved :: Apache Software License',

# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2.7 ',
# 'Programming Language :: Python :: 3.4 ',

],

# What does your project relate to?
keywords='machine learning, ydf, high energy physics, particle physics, data analysis, reproducible experiment',

# You can just specify the packages manually here if your project is
# simple. Or you can use find_packages.
#packages=find_packages(exclude=["cern_utils", "docs", "tests*"]),
# packages=find_packages(exclude=["cern_utils", "docs", "tests*"]),

# List run-time dependencies here. These will be installed by pip when your
# project is installed.

install_requires=requirements,
install_requires=requirements,

# If there are data files included in your packages that need to be
# installed, specify them here. If using Python 2.6 or less, then these
# have to be included in MANIFEST.in as well.
#package_data={
# package_data={
# 'sample': ['package_data.dat'],
#},

Expand Down

0 comments on commit 7e35c68

Please sign in to comment.