Skip to content

Commit

Permalink
Release of version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
heynemann committed Jun 30, 2009
1 parent d2404ce commit 2c6348d
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 4 deletions.
10 changes: 9 additions & 1 deletion Makefile
Expand Up @@ -100,12 +100,20 @@ acceptance:
@python pyccuracy/pyccuracy_console.py -d ${root_dir}/tests/acceptance/action_tests/ -p "*en-us.acc" -l en-us -v 0
@python pyccuracy/pyccuracy_console.py -d ${root_dir}/tests/acceptance/action_tests/ -p "*pt-br.acc" -l pt-br -v 0
@-make selenium_down

sdist:
@echo "Running a build..."
@echo off
@rm -f -r ./pyccuracy/build
@python setup.py sdist
@echo "Build finished successfully!"

upload:
@echo "Running a build..."
@echo off
@rm -f -r ./pyccuracy/build
@python setup.py sdist upload
@echo "Build finished and uploaded!"
@echo "Build finished successfully and uploaded!"

docs:
@$(MAKE) -C ./docs -f Makefile clean
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
@@ -1,3 +1,3 @@
[egg_info]
tag_build = dev
tag_svn_revision = true
tag_build = beta
tag_svn_revision = false
16 changes: 15 additions & 1 deletion setup.py
Expand Up @@ -15,6 +15,8 @@
from setuptools import setup, find_packages
from pyccuracy import Version

#classifier should be changed to "Development Status :: 5 - Production/Stable" soon

setup(
name = 'Pyccuracy',
version = Version,
Expand All @@ -25,7 +27,19 @@
author_email = 'pyccuracy@googlegroups.com',
url = 'http://www.pyccuracy.org',
license = 'OSI',

classifiers = ['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved',
'Natural Language :: English',
'Natural Language :: Portuguese (Brazilian)',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
''],
packages = find_packages(),
package_dir = {"pyccuracy": "pyccuracy"},
include_package_data = True,
Expand Down

0 comments on commit 2c6348d

Please sign in to comment.