https://github.com/sha-red/compass-mixins/tree/master/lib
extended with more sass frameworks and as django app.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.7 KiB
60 lines
1.7 KiB
#!/usr/bin/env python |
|
|
|
from io import open |
|
from setuptools import setup, find_packages |
|
import os |
|
import re |
|
import subprocess |
|
|
|
|
|
""" |
|
Use `git tag 1.0.0` to tag a release; `python setup.py --version` |
|
to update the _version.py file. |
|
""" |
|
|
|
|
|
def get_version(prefix): |
|
if os.path.exists('.git'): |
|
parts = subprocess.check_output(['git', 'describe', '--tags']).decode().strip().split('-') |
|
if len(parts) == 3: |
|
version = '{}.{}+{}'.format(*parts) |
|
else: |
|
version = parts[0] |
|
version_py = "__version__ = '{}'".format(version) |
|
_version = os.path.join(prefix, '_version.py') |
|
if not os.path.exists(_version) or open(_version).read().strip() != version_py: |
|
with open(_version, 'w') as fd: |
|
fd.write(version_py) |
|
return version |
|
else: |
|
for f in ('_version.py', '__init__.py'): |
|
f = os.path.join(prefix, f) |
|
if os.path.exists(f): |
|
with open(f) as fd: |
|
metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", fd.read())) |
|
if 'version' in metadata: |
|
break |
|
return metadata['version'] |
|
|
|
|
|
def read(filename): |
|
path = os.path.join(os.path.dirname(__file__), filename) |
|
with open(path, encoding='utf-8') as handle: |
|
return handle.read() |
|
|
|
|
|
setup( |
|
name='django-compass-mixins', |
|
version=get_version('compass_mixins'), |
|
description='', |
|
long_description=read('README.markdown'), |
|
url='https://projects.c--y.net/erik/django-compass-mixins/', |
|
license='MIT License', |
|
platforms=['OS Independent'], |
|
packages=find_packages( |
|
exclude=['tests', 'testapp'], |
|
), |
|
include_package_data=True, |
|
install_requires=[], |
|
zip_safe=False, |
|
)
|
|
|