Skip to content
Snippets Groups Projects
Commit bb6571a8 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

move package list to setup.cfg

parent 2cfc9e54
No related branches found
No related tags found
No related merge requests found
...@@ -27,19 +27,16 @@ classifier = ...@@ -27,19 +27,16 @@ classifier =
License :: OSI Approved :: MIT License License :: OSI Approved :: MIT License
Topic :: Software Development :: Libraries Topic :: Software Development :: Libraries
[pycodestyle]
max-line-length = 100
[pep8]
max-line-length = 100
[bdist_wheel]
universal = 1
[options] [options]
install_requires = install_requires =
psutil psutil
python_requires = !=2.7.*,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.* python_requires = !=2.7.*,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*
package_dir=
=satella
packages=find:
[options.packages.find]
where=satella
[options.extras_require] [options.extras_require]
HTTPJSONSource = requests HTTPJSONSource = requests
...@@ -48,3 +45,12 @@ TOMLSource = toml ...@@ -48,3 +45,12 @@ TOMLSource = toml
FasterJSON = ujson FasterJSON = ujson
cassandra = cassandra-driver cassandra = cassandra-driver
opentracing = opentracing opentracing = opentracing
[pycodestyle]
max-line-length = 100
[pep8]
max-line-length = 100
[bdist_wheel]
universal = 1
from setuptools import setup, find_packages from setuptools import setup
from satella import __version__ from satella import __version__
setup(packages=find_packages(include=['satella', 'satella.*']), setup(version=__version__)
version=__version__,
test_suite='nose2.collector.collector'
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment