8000 Switch to setuptools by mvcisback · Pull Request #346 · python/mypy · GitHub
[go: up one dir, main page]

Skip to content

Switch to setuptools #346

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix package_dir declaration and typing modules -> packages
  • Loading branch information
mvcisback committed Aug 13, 2014
commit ebc012f629c817b963a1035ab3f916eb123f864f
Empty file added lib-typing/2.7/__init__.py
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file added lib-typing/3.2/__init__.py
Empty file.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from mypy.codec import register

from setuptools import setup
from setuptools import setup, find_packages

if sys.version_info < (3, 2, 0):
sys.stderr.write("ERROR: You need Python 3.2 or later to use mypy.\n")
Expand Down Expand Up @@ -44,10 +44,10 @@
url='http://www.mypy-lang.org/',
license='MIT License',
platforms=['POSIX'],
package_dir={'': 'lib-typing/3.2', 'mypy': 'mypy'},
package_dir={'typing': 'lib-typing/3.2/typing', 'mypy': 'mypy'},
package_data={'mypy': ['stubs/*/*.py', 'lib/*py', 'vm/*']},
py_modules=['typing'],
packages=['mypy'],
packages=find_packages(),
entry_points={
'console_scripts': ['mypy = mypy.main:main']
},
Expand Down
0