Skip to content

Commit

Permalink
Merge pull request #63 from anthrotype/pypi
Browse files Browse the repository at this point in the history
set up PyPI deployment
  • Loading branch information
LettError authored Dec 9, 2016
2 parents 372a81c + 57437e9 commit 5abce05
Show file tree
Hide file tree
Showing 10 changed files with 322 additions and 153 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ __pycache__/
*.idea
*.log

# Distribution / Packaging
*.egg-info
*.eggs
build
dist

Lib/support/axes.py

Lib/support/mutatorMath-A.py
Expand Down
15 changes: 14 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: python
sudo: required
sudo: false
python:
- "2.7"
- "3.5"
Expand All @@ -12,3 +12,16 @@ script:
after_success:
- coverage combine
- coveralls
deploy:
# deploy to PyPI on tags
provider: pypi
server: https://upload.pypi.org/legacy/
on:
repo: LettError/MutatorMath
tags: true
all_branches: true
python: 3.5
user: anthrotype
password:
secure: fezM8kh/iosxrNrBE0IT5GSg9WDINh1TezYsk2U0fJBHnPWSxsbw4+PX4TrUxuij/6Ysl2K/nMbIfFb6y3qbOFCgIEDPXxRWWk4d2hDyWWa6qrGryOGZ9T4nqBncDqY/3eNIdJ4w6renkLsesVcjb35DkF7SCWA0ONlMxWsG5hIXu9mLorCc+tqf47hCQ1R+uNZy3W6GqnwlmEfxkkQR3uFA+ncnLMoRs7VSJkzZneTUa6eQLCi7l9UVLP/zEk5u1m0mui6Q4pdKgVIixG9gu3U8Fe64DNv7CNNdnLyW6PXnketqPbhXZjduheS1uLh9Is9OnuyfrF8seRa0MyrOlHfwYYRisbwfzAdDhv4t9MhLdEKmpDJTt51ud2WF+aQS+m4i1fp9/5HPgL+MZaZi9jLBHz0qnct1BTh6vioMD96+OGd4+1Ig7fqMlfZWF4bHf/xVTI5LiPq2NSkcD4Lo+52o3OcOt3JYStTFaVr0ordWX39NPid+Qv2acZCezr01fnSMEDdEdff4CipfjXH66LIvZFN2+HeDz9jgt4WsqmqG2JWbcO0qYx8TU8EQO3PS+NWxzOPlu36ZUHOlexy37CEC1wbNwgvIrndgk9/ERfqGk19YvH9LHNJ1InOCGw2wzHvOXVMEgFYTlfXG05+sUUeqpteQx9SMjXoxdl4k6UE=
distributions: sdist bdist_wheel
2 changes: 1 addition & 1 deletion Lib/mutatorMath/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"""

__version__ = "1.8"
__version__ = "2.0.0"

from mutatorMath.objects.location import Location
from mutatorMath.objects.mutator import Mutator
3 changes: 2 additions & 1 deletion Lib/mutatorMath/objects/location.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
import math, sys
import itertools, operator

__version__ = "1.6"
from mutatorMath import __version__


_EPSILON = sys.float_info.epsilon

Expand Down
8 changes: 8 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
include README.rst
include LICENSE
include requirements.txt

recursive-include Lib/mutatorMath/test *.py
recursive-include Lib/mutatorMath/test/ufo/data *.designspace *.glif *.plist *.fea

recursive-include Docs *.jpg *.png *.md *.py
133 changes: 0 additions & 133 deletions README.md

This file was deleted.

Loading

0 comments on commit 5abce05

Please sign in to comment.