1

对于许多聪明的人来说,这可能是一个蹩脚的问题,但我正在努力创建一个简单的 python 包。我的包目录结构是:

address-book/
├── __init__.py
├── dist
│   └── book-0.1.tar.gz
├── address-book
│   ├── __init__.py
│   ├── __init__.pyc
│   ├── person.py
│   └── person.pyc
├── address_book.egg-info
│   ├── PKG-INFO
│   ├── SOURCES.txt
│   ├── dependency_links.txt
│   ├── not-zip-safe
│   └── top_level.txt
├── setup.py
└── tests
    ├── __init__.py
    ├── __init__.pyc
    ├── person_test.py
    └── person_test.pyc

setup.py 如下:

from setuptools import setup, find_packages

setup(name='address-book',
      version='0.1',
      description='The funniest joke in the world',
      url='http://github.com/storborg/funniest',
      author='Address Book',
      author_email='flyingcircus@example.com',
      license='MIT',
      packages=find_packages('.'),
      test_suite="tests",
      zip_safe=False)

SOURCES.txt:

setup.py
address-book/__init__.py
address-book/person.py
address_book.egg-info/PKG-INFO
address_book.egg-info/SOURCES.txt
address_book.egg-info/dependency_links.txt
address_book.egg-info/not-zip-safe
address_book.egg-info/top_level.txt
tests/__init__.py
tests/person_test.py

在 person_test.py 中我无法导入 person.py,可能是什么原因?

解决方案

如果有人遇到同样的问题,我的解决方法是不使用连字符作为包名。简单而有效!

4

1 回答 1

2

看起来你有address-bookaddress_book.egg-info。我认为应该是address-book.egg-info

于 2016-10-20T18:45:57.067 回答