Skip to content

Commit

Permalink
Simplification and minor correction.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alice Zoë Bevan–McGregor committed Nov 29, 2022
1 parent ae4998c commit 1afec79
Showing 1 changed file with 8 additions and 19 deletions.
27 changes: 8 additions & 19 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,10 @@
#!/usr/bin/env python
# encoding: utf-8

from __future__ import print_function
#!/usr/bin/env python3

import os
import sys
import codecs


try:
from setuptools.core import setup, find_packages
except ImportError:
from setuptools import setup, find_packages
from setuptools import setup


if sys.version_info < (2, 7):
Expand Down Expand Up @@ -52,15 +45,10 @@
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python",
Expand All @@ -71,7 +59,7 @@
"Topic :: Utilities",
],

packages = find_packages(exclude=['bench', 'docs', 'example', 'test', 'htmlcov']),
packages = ['cinje'],
include_package_data = True,
package_data = {'': ['README.rst', 'LICENSE.txt']},
namespace_packages = [],
Expand Down Expand Up @@ -104,6 +92,7 @@
tests_require = tests_require,
extras_require = {
'development': tests_require + ['pre-commit'], # Development requirements are the testing requirements.
'safe': ['webob'], # String safety.
'safe': ['markupsafe'], # String safety.
},
)

0 comments on commit 1afec79

Please sign in to comment.